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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    padding-top: 80px;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Top green bar */
.top-bar {
    width: 100%;
    height: 4px;
    background-color: #86c242;
}

/* Header container */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1f3c5a;
    z-index: 1002;
}

.mobile-menu-toggle i {
    width: 24px;
    height: 24px;
}

.mobile-nav-overlay {
    display: none;
}

/* Logo section */
.logo-section {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 8px 16px;
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #f0f0f0;
    color: #1e3a8a;
}

.nav-link.active {
    background-color: #dbeafe;
    color: #1e3a8a;
}

/* CTA Button */
.cta-button {
    padding: 8px 24px;
    background-color: #86c242;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;   
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #6fa035;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(134, 194, 66, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button-desktop {
    display: block;
}

.cta-button-mobile {
    display: none;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
    text-align: center;
}

main h1 {
    font-size: 48px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

main p {
    font-size: 20px;
    color: #666666;
}

/* Responsive design */
@media (max-width: 1024px) {
    .header-content {
        padding: 20px 30px;
        gap: 30px;
    }
    
    .main-nav {
        gap: 4px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 12px 20px;
        gap: 20px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-nav-overlay.overlay-active {
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
        z-index: 1002;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 70px 0 20px 0;
        overflow-y: auto;
        transition: right 0.3s ease;
    }
    
    .main-nav.nav-open {
        right: 0;
    }
    
    .nav-link {
        padding: 16px 24px;
        font-size: 16px;
        text-align: left;
        border-radius: 0;
        border-bottom: 1px solid #f3f4f6;
        color: #1f3c5a;
        width: 100%;
        display: block;
    }
    
    .nav-link:hover {
        background-color: #f9fafb;
    }
    
    .nav-link.active {
        background-color: #dbeafe;
        color: #1e3a8a;
    }
    
    .nav-link:last-child {
        border-bottom: 1px solid #f3f4f6;
    }
    
    .cta-button-desktop {
        display: none;
    }
    
    .cta-button-mobile {
        display: block;
        width: calc(100% - 48px);
        margin: 20px 24px;
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 16px;
        gap: 12px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle i {
        width: 20px;
        height: 20px;
    }
    
    .main-nav {
        width: 280px;
        padding: 60px 0 20px 0;
    }
    
    .nav-link {
        padding: 14px 20px;
        font-size: 15px;
        text-align: left;
    }
    
    .cta-button-mobile {
        width: calc(100% - 40px);
        margin: 16px 20px;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    body {
        padding-top: 65px;
    }
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
  }
  
  .hero {
    background-color: #244a73; /* dark blue */
    color: #ffffff;
    padding: 100px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .hero-content {
    max-width: 750px;
  }
  
  .hero h1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  
  .hero p {
    font-size: 20px;
    line-height: 1.6;
    color: #d9e3ef;
    margin-bottom: 40px;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  /* Primary Button */
  .btn-primary {
    background-color: #7fb13d;
    color: #fff;
  }
  
  .btn-primary:hover {
    background-color: #6a9b30;
  }
  
  /* Secondary Button */
  .btn-secondary {
    background-color: #e5e7eb;
    color: #244a73;
  }
  
  .btn-secondary:hover {
    background-color: #d1d5db;
  }
  
  /* ------------------ */
  /* Responsive Styles  */
  /* ------------------ */
  
  @media (max-width: 992px) {
    .hero h1 {
      font-size: 42px;
    }
  
    .hero p {
      font-size: 18px;
    }
  }
  
  @media (max-width: 600px) {
    .hero {
      padding: 70px 20px;
    }
  
    .hero h1 {
      font-size: 32px;
    }
  
    .hero p {
      font-size: 16px;
    }
  
    .hero-buttons {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .btn {
      width: 100%;
      text-align: center;
    }
  }
  .features {
    background-color: #e7e8e9;
    padding: 40px 20px;
  }
  
  .features-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1f2937;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
    min-width: 200px;
  }
  
  .feature-item i {
    color: #86c242; /* green icon */
    width: 22px;
    height: 22px;
  }
  
  /* Why Choose Section */
  .why-choose-section {
    background-color: #ffffff;
    padding: 100px 20px;
  }
  
  .why-choose-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .why-choose-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #1f3c5a;
    margin-bottom: 15px;
  }
  
  .why-choose-header p {
    font-size: 18px;
    color: #4b5563;
  }
  
  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .why-choose-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .why-choose-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
  }
  
  .why-choose-card i {
    color: #86c242;
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
    margin-bottom: 24px;
  }
  
  .why-choose-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f3c5a;
    margin-bottom: 16px;
  }
  
  .why-choose-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
  }
  
  @media (max-width: 992px) {
    .why-choose-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    
    .why-choose-header h2 {
      font-size: 36px;
    }
  }
  
  @media (max-width: 768px) {
    .why-choose-section {
      padding: 70px 20px;
    }
    
    .why-choose-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    
    .why-choose-header h2 {
      font-size: 32px;
    }
    
    .why-choose-card {
      padding: 30px 24px;
    }
  }

  .partner-section {
    background-color: #f3f4f6;
    padding: 90px 20px;
    text-align: center;
  }
  
  .container {
    margin: 0 auto;
  }
  
  .partner-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1f3c5a; /* dark blue */
    margin-bottom: 30px;
  }
  
  .partner-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #374151;
    max-width: 1000px;
    margin: 0 auto;
  }
  

  .partner-section {
    background-color: #f3f4f6;
    padding: 90px 20px;
    text-align: center;
  }
  
  .container {
    margin: 0 auto;
  }
  
  .partner-content h2 {
    font-size: 35px;
    font-weight: 700;
    color: #1f3c5a; /* dark blue */
    margin-bottom: 30px;
  }
  
  .partner-content p {
    font-size: 19px;
    line-height: 1.8;
    color: #374151;
    max-width: 1000px;
    margin: 0 auto;
  }
  .process-section {
    background-color: #eaecef;
    padding: 100px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .section-header {
    text-align: center;
    margin-bottom: 70px;
  }
  
  .section-header h2 {
    font-size: 35px;
    font-weight: 700;
    color: #1f3c5a;
    margin-bottom: 15px;
  }
  
  .section-header p {
    font-size: 18px;
    color: #4b5563;
  }
  
  /* Grid */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
  }
  
  /* Card */
  .process-card {
    background: #ffffff;
    padding:15px 15px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .process-card:hover {
    transform: translateY(-6px);
    border: 2px solid #7fb13d;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    background: #7fb13d;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
  }
  
  .process-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f3c5a;
    margin-bottom: 18px;
  }
  
  .process-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
  }
  @media (max-width: 1200px) {
    .process-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .process-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .section-header h2 {
      font-size: 32px;
    }
  }
  
  @media (max-width: 500px) {
    .process-grid {
      grid-template-columns: 1fr;
    }
  
    .process-section {
      padding: 70px 20px;
    }
  }
  
  /* Footer CTA Section */
  .footer-cta {
    background-color: #244a73;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
  }
  
  .footer-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .footer-cta-content p {
    font-size: 20px;
    color: #d9e3ef;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn-secondary-outline {
    background-color: transparent;
    color: #244a73;
    border: 2px solid #ffffff;
    padding: 16px 28px;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn-secondary-outline:hover {
    background-color: #ffffff;
    color: #244a73;
  }
  
  /* Main Footer */
  .main-footer {
    background-color: #1f3c5a;
    color: #ffffff;
    padding: 60px 20px 0;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  
  .footer-column h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .footer-about {
    max-width: 300px;
  }
  
  .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
  }
  
  .footer-about p {
    font-size: 15px;
    line-height: 1.6;
    color: #d1d5db;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #86c242;
  }
  
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #d1d5db;
    font-size: 15px;
  }
  
  .footer-contact i {
    width: 20px;
    height: 20px;
    color: #86c242;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .footer-contact span {
    line-height: 1.5;
  }
  
  /* Footer Bottom Bar */
  .footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 20px;
    background-color: #1f3c5a;
  }
  
  .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .copyright {
    color: #9ca3af;
    font-size: 14px;
    margin: 0;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  
  .footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .footer-bottom-links a:hover {
    color: #86c242;
  }
  
  /* Footer Responsive */
  @media (max-width: 992px) {
    .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
    
    .footer-cta-content h2 {
      font-size: 36px;
    }
    
    .footer-cta-content p {
      font-size: 18px;
    }
  }
  
  @media (max-width: 768px) {
    .footer-cta {
      padding: 70px 20px;
    }
    
    .footer-cta-content h2 {
      font-size: 32px;
    }
    
    .footer-cta-content p {
      font-size: 16px;
    }
    
    .footer-cta-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .btn-secondary-outline,
    .btn-primary {
      width: 100%;
      max-width: 300px;
      text-align: center;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-bottom-content {
      flex-direction: column;
      text-align: center;
    }
    
    .footer-bottom-links {
      justify-content: center;
    }
  }
  
    