* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
  }
  .navbar {
    background-color: #ffffff;
  }
  .navbar .navbar-brand,
  .navbar-nav .nav-link {
    color: #0d6efd;
  }
  .navbar .navbar-brand:hover,
  .navbar-nav .nav-link:hover {
    color: #0a58ca;
  }

  .hero-section {
    background: linear-gradient(90deg, #0d6efd 0%, #0d4fb2 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    clip-path: ellipse(100% 80% at 50% 20%);
  }
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .hero-btn {
    background-color: #ffffff;
    color: #0d6efd;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
  }
  .hero-btn:hover {
    transform: scale(1.05);
  }

  .about-section {
    padding: 4rem 1rem;
    background-color: #ffffff;
  }
  .about-section h2 {
    color: #0d6efd;
    margin-bottom: 3rem;
  }

  /* Carduri stilizate pentru "Povestea mea" și "Date de contact" */
  .about-card {
    background: #f2f7fc;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
  }
  .about-card:hover {
    transform: scale(1.05);
  }
  .about-card h5 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
  }
  .about-card p {
    font-size: 1rem;
    color: #333;
  }

  .services-section {
    padding: 3rem 1rem;
    background-color: #f2f7fc;
  }
  .services-section h2 {
    color: #0d6efd;
    margin-bottom: 2rem;
    text-align: center;
  }
  .service-card {
    transition: all 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .contact-section {
    padding: 3rem 1rem;
    background-color: #ffffff;
  }
  .contact-section h2 {
    color: #0d6efd;
    margin-bottom: 2rem;
    text-align: center;
  }

  footer {
    background-color: #0d6efd;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }
  .footer-icon {
    color: #fff;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }
  .footer-icon:hover {
    color: #ffc107;
  }

  #btn-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    cursor: pointer;
  }
  #btn-back-to-top:hover {
    background-color: #0a58ca;
  }

  /* Hartă lățime completă */
  .full-width-map {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    height: 400px;
    border: none;
  }