  /* Services start */
  /* Base styles */

/* Header styles */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 64px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  
  .logo-container {
    width: 216px;
    height: 54px;
  }
  
  .logo-svg {
    width: 100%;
    height: 100%;
  }
  
  .main-nav {
    display: flex;
    gap: 32px;
  }
  
  .nav-link {
    color: #000;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
  }
  
  .auth-buttons {
    display: flex;
    gap: 16px;
  }
  
  .login-btn {
    padding: 8px 16px;
    background: none;
    border: none;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: pointer;
  }
  
  .signup-btn {
    padding: 8px 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: pointer;
    background-color: #3328bf;
  }
  
  /* Services section styles */
  .services-section {
    padding: 96px 64px;
    background-color: #fff;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  
  .section-title {
    font-family: "Inter", sans-serif;
    font-size: 31px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
  }
  
  .section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    color: #808080;
  }
  
  .filter-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  
  .filter-btn {
    padding: 10px 16px;
    border-radius: 9999px;
    border: none;
    color: #374151;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    cursor: pointer;
    background-color: #e5e7eb;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: 312px repeat(3, 1fr);
    grid-auto-rows: auto;
    column-gap: 24px;
    row-gap: 32px;
    align-items: stretch;
  }
  
  /* How it works card */
  .how-it-works {
    grid-row: span 2;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    background-color: #f3f4f6;
  }
  
  .how-it-works-title {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  
  .steps-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .step {
    display: flex;
    gap: 8px;
  }
  
  .step-number {
    width: 25px;
    height: 25px;
    color: #fff;
    border-radius: 50%;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    background-color: #3328bf;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 4px;
  }
  
  .step-description {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #4b5563;
  }
  
  .help-box {
    border: 1px solid #808080;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
  }
  
  .help-title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .help-description {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #000;
    margin-bottom: 16px;
  }
  
  .help-link {
    color: #3328bf;
    text-decoration: underline;
    font-family: "Inter", sans-serif;
    font-size: 12px;
  }
  
  /* Service cards */
  .square-card {
    height: 312px; /* Match the width from grid-template-columns: 312px */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  
  .service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon {
    width: 24px;
    height: 24px;
    color: #3328bf;
  }
  
  .service-title {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
  }
  
  .service-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 24px;
  }
  
  .explore-btn {
    width: 100%;
    padding: 11px 0;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: pointer;
    background-color: #3328bf;
  }
  
  /* Benefits section */
  .benefits-section {
    padding: 64px;
    background-color: #e9e9e9;
  }
  
  .benefits-title {
    font-family: "Inter", sans-serif;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .benefit-card {
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1),
      0 4px 6px -1px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  
  .benefit-icon-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background-color: rgba(51, 40, 191, 0.1);
  }
  
  .check-icon {
    width: 24px;
    height: 24px;
    color: #3328bf;
  }
  
  .benefit-title {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .benefit-description {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4b5563;
  }
  
  /* Footer styles */
  .main-footer {
    padding-top: 64px;
    background-color: #efeff3;
  }
  
  .footer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 288px 1fr;
    gap: 48px;
  }
  
  .footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-logo {
    width: 216px;
    height: 54px;
  }
  
  .footer-description {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    color: #000;
    line-height: 1.5;
  }
  
  .social-icons {
    display: flex;
    gap: 4px;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
  
  .footer-links-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .quick-links, .contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-heading {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .footer-link {
    color: #000;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
  }
  
  .contact-detail {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #000;
    margin-bottom: 8px;
  }
  
  .cta-container {
    text-align: left;
  }
  
  .cta-heading {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.96px;
    margin-bottom: 45px;
  }
  
  .cta-button {
    padding: 8px 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    cursor: pointer;
    background-color: #3328bf;
  }
  
  .copyright {
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    color: #fcfcfc;
    margin-top: 24px;
    background-color: #0d0d0d;
    text-align: center;
  }
  
  /* Media queries */
  @media (max-width: 991px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .how-it-works {
      grid-column: span 2;
    }
  
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .footer-links-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .cta-container {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 640px) {
    .main-header {
      padding: 16px;
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
  
    .main-nav {
      flex-direction: column;
      gap: 16px;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  
    .how-it-works {
      grid-column: span 1;
    }
  
    .benefits-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-links-container {
      grid-template-columns: 1fr;
    }
  
    .cta-container {
      grid-column: span 1;
    }
  
    .cta-heading {
      font-size: 32px;
    }
  }
  
  /* services end */
  
  a.explore-btn {
  display: block;
  text-align: center;
  text-decoration: none;
}