/* All other styles go here */

.section-padding {
  padding: 64px 0;
}

.bg-light-grey {
  background-color: #f5f7f6;
}

.text-green {
  color: #a01887 !important;
}

.btn-green {
  background: #a01887;
  color: white;
  border-radius: 3.125rem;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border: none;
}

.footer-section {
        background-color: #fff;
        padding: 64px 0 32px 0;
        font-size: 14px;
        border-top: 1px solid #e5e7eb;
      }

      .footer-logo {
        font-size: 20px;
        font-weight: 800;
        color: var(--primary-green);
        letter-spacing: -0.5px;
      }

      .social-links a {
        text-decoration: none;
        font-size: 18px;
        color: #666;
        transition: color 0.2s ease;
      }

      .social-links a:hover {
        color: var(--primary-green);
      }

      .footer-divider {
        border-color: #e5e7eb;
        opacity: 1;
      }

      .footer-heading {
        font-size: 14px;
        font-weight: 700;
        color: var(--dark-text);
        margin-bottom: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
      }

      .footer-links a:hover {
        color: var(--primary-green);
      }

      .footer-disclaimer {
        color: #777;
        font-size: 11px;
        line-height: 1.6;
      }

      .disclaimer-link {
        color: #555;
        text-decoration: underline;
        font-weight: 600;
      }

      .disclaimer-link:hover {
        color: var(--primary-green);
      }

      .copyright-text {
        font-size: 11px;
        color: #999;
        margin-top: 24px;
      }

      .contact-text {
        color: #555;
        font-weight: 500;
      }

      @media (max-width: 768px) {
        .footer-section {
          padding: 40px 0 24px 0;
        }
        .footer-heading {
          margin-top: 16px;
        }
      }

      .trust-section {
        background-color: #fff;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
      }

      .trust-section h3 {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--dark-text);
      }

      .trust-logo-card {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 80px;
        padding: 16px;
        background: transparent;
        transition: transform 0.2s ease;
      }

      .trust-logo-card:hover {
        transform: translateY(-3px);
      }

      .trust-logo {
        max-height: 75px;
        max-width: 100%;
        width: auto;
        object-fit: contain;
      }

      .trust-logo-card:hover .trust-logo {
        filter: grayscale(0%);
        opacity: 1;
      }

      @media (max-width: 768px) {
        .trust-section h3 {
          font-size: 22px;
          margin-bottom: 32px;
        }
        .trust-logo-card {
          height: 60px;
          padding: 8px;
        }
      }

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  .footer-section {
    padding: 40px 0 24px 0;
  }
}