    /* CTA Section */
        .cta {
            background-color: #325573;
            background-image: url('../assets/images/img_close_36px_779x1467.png');
            background-size: cover;
            background-position: center;
            border-radius: 30px;
            padding: 30px 24px;
            margin: 46px 22px 0;
            text-align: center;
        }

        .cta-image {
            width: 100%;
            border-radius: 20px;
            margin-bottom: 68px;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 600;
            color: #fdfeff;
            margin-bottom: 34px;
            padding: 0 168px;
        }

        .cta-buttons {
            display: flex;
            gap: 18px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-cta-secondary {
            background: transparent;
            color: #fdfeff;
            padding: 18px 24px ;
            border: 1px solid #fdfeff;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
         .btn-primary {
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-cta-secondary:hover {
            background-color: #fdfeff;
            color: #325573;
        }
        /* Footer */
        .footer {
            background-color: #113554;
            padding: 106px 16px;
            margin-top: 52px;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 3.5rem;
        }

        .footer-title {
            font-size: 32px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            color: #ffffff;
            text-align: center;
            margin-bottom: 36px;
        }

        .footer-cta-button {
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 20px 34px ;
            border-radius: 32px;
            border: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 auto 74px;
            transition: all 0.3s ease;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 96px;
        }
 .footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  padding: 8px;               /* keeps the icon inside the circle */
  fill: #ffffff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  fill: orangered;           /* icon color change */
  border-color: orangered;
  transform: scale(1.1);
}

.footer-column h4 {
            font-size: 19px;
            font-family: 'SF Pro Text', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            color: #ffffff;
            margin-bottom: 20px;
        }
        .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


        .footer-column p {
            font-size: 12px;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
            white-space: pre-line;
        }

        .footer-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 0 24px 32px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            width: 120px;
            height: auto;
        }

        .footer-copyright {
            font-size: 18px;
            font-family: 'Geist', sans-serif;
            font-weight: 400;
            color: #ffffff;
            text-align: center;
            flex: 1;
        }

        .footer-social {
            display: flex;
            gap: 14px;
            align-items: center;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            transition: transform 0.3s ease;
        }

        .social-icon:hover {
            transform: scale(1.1);
        }

        .social-icon.twitter {
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 20px;
            padding: 12px;
        }

       