:root {
      --midnight-navy: #1D3557;
      --emerald-green: #4CAF50;
      --off-white: #F9FAFB;
      --light-navy-bg: #F0F4F8; /* New light navy background */
      --gray: #6B7280;
      --light-gray: #D1D5DB;
      --dark-gray: #374151;
      --gradient-success: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
      --shadow-soft: 0 4px_20px rgba(29, 53, 87, 0.08);
      --shadow-medium: 0 8px_30px rgba(29, 53, 87, 0.12);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Work Sans', sans-serif;
      background-color: white;
      color: var(--dark-gray);
      line-height: 1.7;
      overflow-x: hidden;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    h1, h2, h3 {
      font-family: 'IBM Plex Sans', sans-serif;
      font-weight: 700;
      color: var(--midnight-navy);
    }

    h1 {
      font-size: 3.5rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    h2 {
      font-size: 2.75rem;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    h3 {
      font-size: 1.25rem;
      margin-bottom: 0.5rem;
    }

    p {
      font-size: 1.1rem;
      color: var(--gray);
      max-width: 55ch;
    }
    
    .section {
        padding: 6rem 0;
    }

    .btn {
      padding: 1rem 2rem;
      border-radius: 12px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      border: 2px solid transparent;
    }

    .btn-primary {
      background: var(--gradient-success);
      color: white;
      box-shadow: var(--shadow-soft);
    }

    .btn-primary2 {
      margin-top: 1rem;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
    }
    
    .btn-secondary {
      background: white;
      color: var(--midnight-navy);
      border-color: var(--light-gray);
    }

    .btn-secondary:hover {
        border-color: var(--emerald-green);
        color: var(--emerald-green);
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--light-gray);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo img {
        height: 36px; /* Adjust as needed */
        width: auto;
        display: block;
    }

    .logo span {
        font-family: 'IBM Plex Sans', sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--midnight-navy);
        line-height: 1;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: var(--dark-gray);
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: var(--emerald-green);
    }
    
    .header-actions {
        display: flex;
        gap: 1rem;
        align-items: center;
    }

    .page-header {
        padding-top: 10rem;
        padding-bottom: 4rem;
        background-color: var(--off-white);
        text-align: center;
    }

    /* Hero Section */
    .hero {
      padding-top: 10rem;
      padding-bottom: 6rem;
      background: var(--off-white);
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-medium);
        transform: scale(1);
        transition: transform 0.6s ease;
    }
    .hero-image img {
        width: 100%;
        display: block;
    }

    /* Logo Cloud */
    .logo-cloud {
        text-align: center;
        padding: 3rem 0;
    }
    .logo-cloud-title {
        font-size: 0.9rem;
        color: var(--gray);
        margin-bottom: 2rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .logo-cloud-grid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 2rem;
        flex-wrap: wrap;
        filter: grayscale(100%);
        opacity: 0.6;
    }
    
    /* Features Section */
    .features-content {
        text-align: center;
    }

    .features-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
    }

    .feature-card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      text-align: left;
      border: 1px solid var(--light-gray);
      transition: all 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-soft);
        border-color: var(--emerald-green);
    }

    .feature-card .icon {
      font-size: 1.5rem;
      color: var(--emerald-green);
      margin-bottom: 1rem;
      background-color: #e8f5e9;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
    }

    /* How It Works Section */
    .how-it-works {
      background-color: var(--off-white);
    }
    .how-it-works-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .how-it-works-image {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
    }
    .how-it-works-image img {
        width: 100%;
        display: block;
    }
    
    .timeline {
        position: relative;
        margin-top: 1rem;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 25px; /* Center of 50px icon */
        top: 25px;
        bottom: 25px;
        width: 2px;
        background-color: var(--light-gray);
        z-index: 0;
    }

    .timeline-step {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
        margin-bottom: 2.5rem;
    }
    .timeline-step:last-child {
        margin-bottom: 0;
    }
    
    .timeline-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        background-color: #e8f5e9;
        color: var(--emerald-green);
        border: 4px solid var(--light-navy-bg);
        z-index: 1;
    }

    /* Testimonials */
    .testimonials-content {
        text-align: center;
    }
    .testimonials-content > p {
        margin-left: auto;
        margin-right: auto;
    }
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 4rem;
        text-align: left;
    }
    .testimonial-card {
        background-color: var(--off-white);
        padding: 2rem;
        border-radius: 16px;
    }
    .testimonial-card .stars {
        color: var(--emerald-green);
        margin-bottom: 1rem;
    }
    .testimonial-card p {
        font-size: 1.1rem;
        color: var(--midnight-navy);
        font-style: italic;
        margin-bottom: 1rem;
    }
    .testimonial-author {
        font-weight: 600;
        color: var(--gray);
    }
    
    /* CTA Section */
    .cta {
        background: var(--midnight-navy);
        border-radius: 24px;
        padding: 4rem;
        color: white;
    }
    .cta-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    .cta-content h2 {
        color: white;
        margin-bottom: 0;
    }

    /* Footer */
    .footer {
        background: var(--light-navy-bg);
        color: var(--gray);
        padding: 4rem 0 2rem;
    }
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
    }
    .footer-about .logo {
        margin-bottom: 1rem;
        display: block;
    }
    .footer h4 {
      font-family: 'Work Sans', sans-serif;
      font-weight: 600;
      color: var(--dark-gray);
      margin-bottom: 1rem;
    }
    .footer ul {
        list-style: none;
    }
    .footer ul li {
        margin-bottom: 0.5rem;
    }
    .footer ul a {
        color: var(--gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer ul a:hover {
        color: var(--emerald-green);
    }
    .footer-bottom {
        border-top: 1px solid var(--light-gray);
        margin-top: 3rem;
        padding-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
    }

    /* Animations */
    [data-animate] {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    [data-animate].animated {
      opacity: 1;
      transform: translateY(0);
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        h1 { font-size: 3rem; }
        h2 { font-size: 2.25rem; }
        .hero-content { grid-template-columns: 1fr; text-align: center; }
        .hero-text { order: 2; }
        .hero-image { order: 1; margin-bottom: 2rem; }
        p { max-width: 100%; }
    }
    @media (max-width: 768px) {
        .how-it-works-content { grid-template-columns: 1fr; }
        .how-it-works-image { margin-bottom: 3rem; }
        .footer-content { grid-template-columns: 1fr 1fr; }
        .header-content .btn { display: none; }
        nav { display: none; /* For a real site, implement a mobile menu */ }
        .cta-content { flex-direction: column; text-align: center; }
    }
