 
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #1a1a1a;
      background-color: #ffffff;
    }

    /* --- Header Styles (Desktop First) --- */
    header {
      background-color: #ffffff;
      padding: 15px 30px;
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid #f0f0f0;
      gap: 30px; /* Space between logo and nav-wrapper */
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: #1a1a1a;
    }
    
    .logo-container img {
      display: block; 
      margin-left: 70px;
    }

    /* NEW: Desktop Nav Wrapper Layout */
    .nav-wrapper {
      display: flex;
      flex-grow: 1; /* Allows it to take up available space */
      justify-content: space-between; /* Pushes <nav> to the left and .header-buttons to the right */
      align-items: center;
      margin-left: 70px;
    }
    
    /* NEW: Mobile menu toggle button (hidden on desktop) */
    .menu-toggle {
      display: none; 
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      z-index: 101; 
      color: #1a1a1a;
      padding: 5px;
    }

    nav {
      display: flex;
      gap: 35px; /* Cleaned up desktop spacing */
    }

    nav a {
      margin: 0; /* Clear previous margins */
      text-decoration: none;
      color: #1a1a1a;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #30c8a6;
    }

    .header-buttons {
      display: flex;
      gap: 20px;
      align-items: center;
    }

    .btn-login {
      background: transparent;
      color: #1a1a1a;
      border: none;
      padding: 11px 0;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: color 0.3s;
    }

    .btn-login:hover {
      color: #30c8a6;
      text-decoration: none;
    }

    .btn-signup {
      background-color: #30c8a6;
      color: #ffffff;
      border: none;
      padding: 10px 25px;
      border-radius: 50px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
      margin-right: 60px;
      text-decoration: none;
    }

    .btn-signup:hover {
      background-color: #29b092;
    }

    /* Hero Section */
    .hero {
      display: flex;
      min-height: 70vh;
      background: linear-gradient(135deg, #f5ede5 0%, #f5ede5 50%, transparent 50%);
    }

    .hero-left {
      flex: 0.9;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px 80px;
      background-color: #f5ede5;
    }

    .hero-left h1 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      line-height: 1.2;
      margin-bottom: 20px;
      color: #1a1a1a;
      font-weight: 400;
    }

    .hero-left p {
      font-size: 16px;
      line-height: 1.6;
      color: #555555;
      margin-bottom: 30px;
      max-width: 90%;
    }

    .btn-primary {
      background-color: #30c8a6;
      color: #ffffff;
      border: none;
      padding: 12px 35px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s;
      width: fit-content;
      text-decoration: none;
    }

    .btn-primary:hover {
      background-color: #29b092;
      text-decoration: none;
    }

    .hero-right {
      flex: 1;
      background-size: cover;
      background-position: center;
    }

    /* Quote Section */
    .quote-section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.quote-slider {
  position: relative;
  overflow: hidden;
}

.quote-slide {
  opacity: 0;
  transform: translateX(300px);
  transition: all 0.6s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.quote-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.quote-text {
  font-size: 1.6rem;
  max-width: 800px;
 font-family: 'Cinzel', serif;
 font-weight: 500;
  margin: 0 auto 15px;
  line-height: 1.6;
}

.quote-underline {
  width: 880px;
  height: 1px;
  background: #0a0a0a;
  margin: 10px auto;
  border-radius: 3px;
}

.quote-source {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  gap: 8px;
  margin-top: 8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 1000;
  color: #090a0a;
}

.source-pointer {
  width: 10px;
  height: 10px;
  background: #1B85BC;
  transform: rotate(45deg);
}

.pagination {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: 0.3s;
}

.pagination-dot.active {
  background: #1B85BC;
  transform: scale(1.2);
}

   /* Dark Section */
    .dark-section {
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 80px 40px;
    }

    .dark-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.8rem;
      line-height: 1.2;
      margin-bottom: 20px;
      text-align: center;
      font-weight: 400;
    }

    .dark-section p {
      font-size: 16px;
      line-height: 1.6;
      text-align: center;
      color: #cccccc;
      margin-bottom: 50px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      /* --- NEW: Border and smooth edge --- */
      border: 1px solid rgba(255, 255, 255, 0.2); /* Slight white line */
      border-radius: 12px; /* Smooth edge rectangle */
      padding: 30px; /* Add internal padding */
      transition: border-color 0.3s;
    }
    
    .feature-item:hover {
      border-color: #30c8a6; /* Optional: Highlight on hover */
    }
    /* --- END NEW --- */


    .feature-icon {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .feature-item h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .feature-item p {
      font-size: 14px;
      color: #aaaaaa;
    }

    /* CTA Section */
    .cta-section {
      background-color: #f5ede5;
      padding: 80px 40px;
      text-align: center;
    }

    .cta-section h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.8rem;
      line-height: 1.2;
      margin-bottom: 15px;
      font-weight: 400;
    }

    .cta-section p {
      font-size: 16px;
      color: #555555;
      margin-bottom: 30px;
    }

    /* Cards Section */
    .cards-section {
      background-color: #ffffff;
      padding: 80px 40px;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      line-height: 1.2;
      margin-bottom: 15px;
      font-weight: 400;
    }

    .section-title p {
      font-size: 16px;
      color: #666666;
      max-width: 600px;
      margin: 0 auto;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card {
      background-color: #f9f9f9;
      padding: 40px 30px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .card-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1a1a1a;
    }

    .card p {
      font-size: 14px;
      color: #666666;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .card .btn-primary {
      margin-top: 10px;
    }

    /* Process Section */
    .process-section {
      background-color: #f5f5f5;
      padding: 80px 40px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 50px auto 0;
    }

    .process-item {
      text-align: center;
    }

    .process-number {
      font-family: 'DM Serif Display', serif;
      font-size: 3rem;
      font-weight: 400;
      color: #30c8a6;
      margin-bottom: 15px;
    }

    .process-item h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #1a1a1a;
    }

    .process-item p {
      font-size: 14px;
      color: #666666;
      line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
      background-color: #ffffff;
      padding: 60px 40px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto 60px;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      font-weight: 400;
      color: #30c8a6;
      margin-bottom: 10px;
    }

    .stat-label {
      font-size: 14px;
      color: #666666;
    }

    .team-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .team-content h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 2.5rem;
      line-height: 1.3;
      margin-bottom: 20px;
      font-weight: 400;
    }

    .team-content p {
      font-size: 14px;
      color: #666666;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .team-role {
      margin-bottom: 25px;
    }

    .team-role h5 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #1a1a1a;
    }

    /* Testimonials */
    .testimonials-section {
      background-color: #f5f5f5;
      padding: 80px 40px;
    }

    .testimonial-item {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 8px;
      text-align: center;
    }

    .stars {
      margin-bottom: 20px;
      font-size: 1.2rem;
      color: #ffc107;
    }

    .testimonial-text {
      font-size: 15px;
      line-height: 1.6;
      color: #555555;
      margin-bottom: 25px;
    }

    .testimonial-profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .testimonial-profile img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .testimonial-profile h4 {
      font-size: 14px;
      font-weight: 600;
      margin: 0;
    }

    .testimonial-profile p {
      font-size: 13px;
      color: #999999;
      margin: 0;
    }

    /* Footer */
    footer {
      background-color: #1a1a1a;
      color: #ffffff;
      padding: 60px 40px 30px;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-col h4 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col ul li a {
      color: #aaaaaa;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-col ul li a:hover {
      color: #30c8a6;
    }

    .footer-col p {
      font-size: 14px;
      color: #aaaaaa;
      line-height: 1.8;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: #333333;
      color: #ffffff;
      text-decoration: none;
      border-radius: 50%;
      transition: background-color 0.3s;
    }

    .social-links a:hover {
      background-color: #30c8a6;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid #333333;
      font-size: 13px;
      color: #999999;
    }

    /* --- Responsive Styles (Mobile Overrides) --- */
    @media (max-width: 768px) {
      /* Mobile Header - Logo on the left, Menu Toggle on the right */
      header {
        flex-direction: row; /* Keep content in a row */
        justify-content: space-between; /* Space logo and menu toggle */
        padding: 15px 20px;
        gap: 0; /* Clear desktop gap */
      }
   .logo-container img {
      display: block; 
      margin-left: 0;
    }
      /* Show the Hamburger Icon */
      .menu-toggle {
        display: block;
      }

      /* Full-screen overlay for navigation on mobile */
      .nav-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff; /* White overlay */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 99; /* Below the header, above content */
        
        /* Mobile specific positioning */
        transform: translateX(100%); 
        transition: transform 0.4s ease-in-out;
      }
      
      /* Class added by JavaScript to show the menu */
      .nav-wrapper.active {
        transform: translateX(0); 
      }

      /* Navigation Links - Stacked */
      nav {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
        padding: 0;
        gap: 0; /* Clear desktop gap */
      }

      nav a {
        margin: 15px 0; /* Vertical spacing */
        font-size: 18px; /* Larger font size for touch */
      }

      /* Header Buttons - Stacked if needed, otherwise centered */
      .header-buttons {
        flex-direction: column;
        gap: 20px;
      }
      
      .btn-signup, .btn-login {
        width: 200px; /* Make buttons wider and easier to tap */
        text-align: center;
        padding: 12px 25px;
      }
      
      /* General mobile adjustments for other sections */
      .hero {
        flex-direction: column;
        background: #ffffff;
      }

      .hero-left {
        padding: 40px 20px;
        background-color: #f5ede5;
      }

      .hero-left h1 {
        font-size: 2rem;
      }

      .hero-left p {
        max-width: 100%;
      }

      .hero-right {
        min-height: 400px;
      }

      .section-title h2 {
        font-size: 1.8rem;
      }

      .quote-text {
        font-size: 1.3rem;
      }

      .dark-section h2 {
        font-size: 2rem;
      }

      .team-section {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  