/* Resetează stilurile de bază */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: #f8f9fa; /* Gri foarte deschis */
      color: #333;
      line-height: 1.6;
    }

    /* ===== HEADER ===== */
    header {
      background: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #0d6efd;
      text-decoration: none;
    }
    nav a {
      color: #333;
      text-decoration: none;
      margin-left: 1.5rem;
      font-weight: 600;
      transition: color 0.2s ease-in-out;
    }
    nav a:hover {
      color: #0d6efd;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 2rem;
      background: linear-gradient(to right, #0d6efd 50%, #00b7ff);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: "";
      background: url('https://source.unsplash.com/featured/?office,teamwork') no-repeat center/cover; 
      opacity: 0.25;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
    }
    .hero-content {
      max-width: 5600px;
      z-index: 2;
      position: relative;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      line-height: 1.4;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    }
    .hero .cta-buttons {
      display: flex;
      gap: 1rem;
    }
    .btn {
      background: #fff;
      color: #0d6efd;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0.25rem;
      font-size: 1rem;
      cursor: pointer;
      font-weight: 700;
      transition: background 0.3s ease-in-out;
      text-decoration: none;
    }
    .btn:hover {
      background: rgba(255, 255, 255, 0.8);
    }

    /* ===== ABOUT SECTION ===== */
    .about-section {
      display: flex;
      align-items: center;
      padding: 3rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .about-text {
      flex: 1;
    }
    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #0d6efd;
    }
    .about-text p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 1rem;
    }
    .about-text a {
      color: #0d6efd;
      text-decoration: underline;
    }
    .about-image {
      flex: 1;
      min-width: 300px;
      text-align: center;
    }
    .about-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 0.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* ===== FEATURES SECTION ===== */
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin: 3rem auto;
      max-width: 1200px;
      padding: 0 1rem;
    }
    .feature-card {
      background: #fff;
      border-radius: 0.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      flex: 1 1 300px;
      max-width: 350px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .feature-card:hover {
      transform: translateY(-5px);
    }
    .feature-card i {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #0d6efd;
    }
    .feature-card h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
      color: #0d6efd;
    }
    .feature-card p {
      font-size: 1rem;
      color: #555;
    }

    /* ===== HOW-IT-WORKS SECTION ===== */
    .how-it-works {
      background: #0d6efd;
      color: #fff;
      padding: 3rem 1rem;
      text-align: center;
    }
    .how-it-works h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    .steps-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .step-box {
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 0.5rem;
      max-width: 300px;
      flex: 1 1 300px;
      position: relative;
    }
    .step-box i {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #fff;
    }
    .step-box h3 {
      font-size: 1.25rem;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .step-box p {
      font-size: 1rem;
      color: #f0f0f0;
    }

    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials {
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    .testimonials h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #0d6efd;
    }
    .testimonial-cards {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
    }
    .testimonial-card {
      background: #fff;
      flex: 1 1 300px;
      max-width: 350px;
      border-radius: 0.5rem;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      text-align: center;
      position: relative;
    }
    .testimonial-card img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 1rem;
    }
    .testimonial-card blockquote {
      font-style: italic;
      color: #555;
      margin-bottom: 1rem;
    }
    .testimonial-card h4 {
      color: #0d6efd;
      margin-bottom: 0.25rem;
    }
    .testimonial-card span {
      font-size: 0.9rem;
      color: #666;
    }

    /* ===== FOOTER ===== */
    footer {
      background: #fff;
      text-align: center;
      padding: 2rem;
      margin-top: 3rem;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }
    footer p {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0.5rem;
    }
    footer a {
      color: #0d6efd;
      text-decoration: underline;
    }

    /* ===== MEDIA QUERIES ===== */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .about-section {
        flex-direction: column;
        text-align: center;
      }
      .about-image, .about-text {
        flex: 1 1 100%;
      }
      .steps-container {
        flex-direction: column;
      }
    }
