@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Home Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-teal) 0%, var(--primary-color) 100%);
    color: var(--secondary-color);
    padding:  0;
    position: relative;
    min-height: 595px;   
    padding-top: 50px; 
    padding-bottom: 50px;
}

/* Hero Background Elements */
.hero-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(44, 122, 140, 0.3) 0%, rgba(26, 91, 138, 0.2) 100%);
    clip-path: polygon(0 0, 70% 0, 50% 100%, 0 100%);
    z-index: 1;
}

.hero-bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 559px;
    height: 597px;
    background: linear-gradient(-45deg, rgba(10, 73, 112, 0.3) 0%, rgba(26, 91, 138, 0.2) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 50% 100%);
    z-index: 1;
}

/* Hero Illustrations */
.hero-illustration-left {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 51px;
    height: 568px;
    z-index: 2;
}

@media (max-width: 1250px) {
    .hero-illustration-left {
        display: none;
    }
}


.hero-illustration-left .hero-illustration-image, .hero-illustration-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1250px) {
    .hero-illustration-right {
        display: none;
    }
}

.hero-illustration-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 559px;
    height: 100%;
    z-index: 2;
}

.hero-illustration-right .hero-illustration-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Content Container */
.hero-content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: row;
    max-width: 1217px;
    gap: 110px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    max-width: 1217px;
    width: 100%;
}

@media (max-width: 1000px) {
    .hero-content {
        flex-direction: column;
        align-items: center;;
        justify-content: center;
    }
}

@media (max-width: 750px) {
    .hero-content {
        gap:25px;
    }
}

.main-hero-title {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--secondary-color);
    font-weight: 500;
    font-family: Poppins, sans-serif;
    line-height:120%;
    line-height: var(--line-height-tight);
    max-width: 595px;
}

@media (max-width: 1000px) {
    .main-hero-title {
        font-size: 32px;
        text-align: center;
        max-width: 100%;
    }
}

.main-hero-description {
    font-size: 20px;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--line-height-base);
    font-family: inter;
    font-weight: 400;
    max-width: 595px;
    width: 100%;
}

@media (max-width: 1000px) {
    .main-hero-description {
        text-align: center;
        max-width: 100%;
    }
}

.hero-highlight {
        font-family: inter;
        border: 0.92px solid #FFFFFF;
        background-color: transparent;
        padding: 3px 7px;
        border-radius: 7px;
        color: var(--secondary-color);
        font-weight: 600;
}

.main-hero-cta-link {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 13px;
}

@media (max-width: 1000px) {
    .main-hero-cta-link {
        font-size: 16px;
        text-align: center;
        justify-content: center;
    }
}


.main-hero-arrow-icon {
    width: 14px;
    height: 12px;
    transition: transform var(--transition-fast);
}

@media (max-width: 1000px) {
    .main-hero-arrow-icon {
        transform: rotate(90deg);
    }
}

.main-hero-cta-link:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(2px);
}

.hero-form {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-hover);
    max-width: 448px;
    width: 100%;
    box-shadow: 0px 40px 60px 0px #053E551A;

}

@media (max-width: 600px){
    .hero-form {
      margin-bottom: -200px;
      box-shadow: 0px 29.82px 44.73px 0px #053E551A;

    }
}

.form-header {
    text-align: left;
    margin-bottom: 36px;
}

.hero-form-title  {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #0D2B37;
    max-width: 268px;
    width: 100%;
}

@media (max-width: 600px) {
    .hero-form-title  {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-form input,
.contact-form-type-select {
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Input placeholder styling */
.contact-form input::placeholder {
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    opacity: 1;
}

.contact-form-type-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a5b8a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 48px;
}

/* Select placeholder (disabled option) styling */
.contact-form-type-select option[disabled] {
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

/* Select option styling */
.contact-form-type-select option {
    padding: 12px;
    background-color: var(--secondary-color);
    color: var(--text-primary);
    font-family: var(--font-family);
}

/* When select has no value selected (showing placeholder) */
.contact-form select:invalid {
    color: var(--text-light);
}

.contact-form .btn {
    padding: 16px;
    font-size: var(--font-size-base);
    font-weight: 600;
}

/* Contact Form 7 Response Messages */
.hero-form .wpcf7-response-output {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid;
    animation: slideInFromTop 0.4s ease-out;
    font-size: 14px;
    margin-left: 0;
    margin-right: 0;
}

.hero-form .wpcf7-mail-sent-ok {
    background-color: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #166534;
}

.hero-form .wpcf7-validation-errors {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.hero-form .wpcf7-response-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

.hero-form .wpcf7-mail-sent-ok .wpcf7-response-icon {
    color: #22c55e;
}

.hero-form .wpcf7-validation-errors .wpcf7-response-icon {
    color: #ef4444;
}

.hero-form .wpcf7-response-content {
    flex: 1;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.hero-form .wpcf7-response-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    color: inherit;
}

.hero-form .wpcf7-response-close:hover {
    opacity: 1;
}

/* Contact Form 7 Form Controls */
.hero-form .wpcf7-form-control-wrap {
    margin-bottom: 16px;
}

.hero-form .wpcf7-form-control {
    width: 100%;
    padding: 16px;
    
}


.hero-form .wpcf7-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.hero-form .wpcf7-select option[disabled] {
    color: rgba(255, 255, 255, 0.5);
}

.hero-form .wpcf7-select option {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.hero-form .wpcf7-select:invalid {
    color: rgba(255, 255, 255, 0.7);
}

.hero-form .wpcf7-submit {
    width: 100%;
    padding: 16px;
    font-size: var(--font-size-base);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* How It Works Section */
.how-it-works {
    position: relative;
    margin-top: 50px;
}

@media (max-width: 600px) {
    .how-it-works {
        margin-top: 200px;
    }
}

.how-it-works-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}


.how-it-works .section-header  {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 641px;
}

@media (max-width: 600px) {
    .how-it-works .section-header  {
        align-items: center;
    }
}

.how-it-works-label {
    color: var(--primary-color);
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--primary-color);
}

.how-it-works .how-it-works-section-title  {
    color: var(--text-primary);
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    max-width: 641px;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .how-it-works .how-it-works-section-title {
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
}

.how-it-works-section-description {
    color: var(--text-secondary);
    max-width: 641px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    margin-top: 16px;
}

@media (max-width: 600px) {
    .how-it-works-section-description {
        max-width: 100%;
        text-align: center;
    }
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1000px) {
    .steps {
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }
    
    /* Steps Carousel for mobile */
    .steps-carousel.slick-initialized {
        display: block;
    }
    
    .steps-carousel .slick-list {
        padding: 0;
    }
    
    .steps-carousel .slick-track {
        display: flex;
        align-items: stretch;
    }
    
    .steps-carousel .step {
        margin: 0 12px;
        width: calc(100vw - 48px);
        max-width: 350px;
    }
    
    /* Hide dots and arrows completely */
    .steps-carousel .slick-dots,
    .steps-carousel .slick-arrow {
        display: none !important;
    }
}


.step {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background-color: var(--secondary-color);
    border-radius: 16px;
    transition: var(--transition-base);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #E2E2E2;
}

.step:hover {
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.step-icon-image {
    width: 44px;
    height: 44px;
    border-radius: 8px;
}

.step-header .step-number {
    font-family: Inter;
    font-weight: 300;
    font-style: Light;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #E2E2E2;
}

.step-content {
    flex: 1;
    margin-top: 32px;
}

.step-title-heading {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color:#0D2B37;    
}

.step-description-text {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color:#4E5D63;
    margin-top: 16px;
}


.cta-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 43px;
    width: 100%;
}

.how-it-works-video-button {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 291px;
    padding:12px;
    background-color: #005678;
    color: #fff;
    border: none;
    height: 60px;
    border-radius: var(--border-radius-lg);
    font-family: Poppins;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    text-decoration: none;
    cursor: pointer;
    gap: 12px;
    transition: 0.5s;
    max-width: 291px;
    width: 100%;
}

.how-it-works-video-button:hover {
    background-color: #005678;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-icon {
    width: 36px;
    height: 36px;
}

.how-it-works-image {
    display: flex;
    position: absolute;
    right: 0;
    justify-content: center;
    align-items: center;
}

@media (max-width: 600px) {
    .how-it-works-image {
        display: none;
    }
}

.consultant-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.how-it-works-consultant-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 140px;
}

.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1219px;
    width: 100%;
    padding: 0 16px;
}

@media (max-width: 600px) {
    .stats {
        margin-top: 74px;
    }
}

.stats-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    width: 100%;
    gap: 85px;
}

@media (max-width: 1000px) {
    .stats-grid {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }
}

.stats-container .stats-grid .stat {
}

@media (max-width: 1024px) {
.stats-container .stats-grid .stat {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.stat-divider{
    width: 1px;
    height: 93px;
    background-color: #E2E2E2;
}

@media (max-width: 1000px) {
    .stat-divider {
        width: 100%;
        height: 1px;
        background-color: #E2E2E2;
    }
}

.stat-number {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #0D2B37;
    min-height: 48px;
}

.stat-description {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;    
    max-width: 252px;
    color: #4E5D63;
}

@media (max-width: 1000px) {
    .stat-description {
        max-width: 100%;
        text-align: center;
    }
}

/* Testimonials Section */
.testimonials-home-section {
    margin-top: 110px;
}

@media (max-width: 1000px) {
    .testimonials-home-section {
        margin-top:108px;
    }
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1000px) {
    .testimonials-container {
        padding: 0 16px;
    }
}

.testimonials-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-label {
    color: var(--primary-color);
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
}

.testimonials-section-title {
    color: var(--text-primary);
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 665px;
    margin-top: 16px;
}

.testimonials-section-header .testimonials-section-description    {
    color: var(--text-secondary);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #4E5D63;
    max-width: 665px;
    margin-top: 16px;
    text-align: center;
}

.video-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-video-illustration {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-video-illustration-mobile-container {
    display: none;
}

@media (max-width: 1000px) {

    .video-illustration {
        display: none;
    }

    .testimonials-video-illustration-mobile-container {
        display: flex;
        margin-top: 43px;
    }
}



.testimonials-video-illustration-arrow {
}

.testimonials-video-illustration-arrow-1 {
    margin-top: 17px;
}

.testimonials-video-illustration-arrow-2 {
    margin-bottom: 17px;
    margin-top: 17px;
    margin-right: 70px;
}

.video-testimonial {
    margin-top: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1219px;
    width: 100%;
}

.video-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 800px;
    height: 468px;
    background: url('../images/video-thumb.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.play-btn {
    width: 110px;
    height:110px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

@media (max-width: 1000px) {
    .play-btn {
        margin-top: 53px;
    }
}

.play-btn:hover {
    background-color: var(--secondary-color);
    transform:  scale(1.1);
}

.white-logo-section-video {
    width: 100%;
    max-width: 100px;
    margin-top: 100px;
    object-fit: scale-down;
    justify-self: flex-end;
}

@media (max-width: 1000px) {
    .white-logo-section-video {
        margin-top: 53px;
        width: 124.96138000488281px;
        height: 19.258878707885742px;
        object-fit: scale-down;
        justify-self: flex-end;
    }
}

/* Features Section */
.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

@media (max-width: 1000px) {
    .features {
        margin-top: 108px;
        padding: 0 16px;
    }
}

.features-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1219px;
    width: 100%;
}

.features-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 1000px) {
    .features-grid {
        flex-direction: column;
    }
}

.feature {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    max-width: 280.75px;
    background-color: #F6F6F6;
    padding:46px 24px ;
    height: 387px;
    width: 280.75px;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 1000px) {
    .feature {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}


.feature-transparency-icon {
    width: 44px;
    height: 44px;
}

.feature-title {
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #0D2B37;
    text-align: center;
}

.feature-description {
    color: var(--text-secondary);
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #4E5D63;
    text-align: center;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    margin-top: 71px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1250px) {
    .cta-section {
        margin-top: 108px;
        padding: 0 16px;
    }
}

.cta-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1219px;
    height: 488px;
    width: 100%;
    background-color: #005678;
    border-radius: 16px;
}

@media (max-width: 850px) {
    .cta-section-container {
        height: auto;
    }
}

.cta-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-left: 97px;
}

@media (max-width: 1250px) {
    .cta-content {
        padding-left: 30px;
    }
}

@media (max-width: 1000px) {
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

@media (max-width: 850px) {
    .cta-content {
        padding-left: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
    }
}

.cta-text {

}

@media (max-width: 850px) {
    .cta-text {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 64px;
        padding: 0 16px;
    }
}

.cta-section-label {
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin-bottom: 16px;
}

@media (max-width: 850px) {
    .cta-section-label {
        width: 100%;
        text-align: center;
    }
}

.cta-main-title {
   font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #FFFFFF;
    max-width: 678px;

}

@media (max-width: 850px) {
    .cta-main-title {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
}


.cta-main-description {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    max-width: 678px;

}

@media (max-width: 850px) {
    .cta-main-description {
        max-width: 100%;
        text-align: center;
    }
}


.cta-section-note {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
    max-width: 678px;
    margin-top: 16px;

}

.cta-section-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    background-color: #FFFFFF;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%;
    color: #005678;
    max-width: 305px;
    margin-top: 32px;
    margin-bottom: 32px;
}


.cta-image {
}

@media (max-width: 850px) {
    .cta-section-btn {
        margin-top: 24px;
    }
}

.cta-section-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 850px) {
    .cta-image {
        align-self: flex-end;
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 120px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1219px;
    width: 100%;
}

@media (max-width: 1250px) {
    .faq-container {
        max-width: 100%;
        padding: 0 16px;
    }
}

@media (max-width: 850px) {
    .faq-container {
        max-width: 100%;
        padding: 0 16px;
    }
}



.faq-label {
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #005678;
}

@media (max-width: 850px) {
    .faq-label {
        text-align: center;
    }
}

.faq-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 1248px;
    width: 100%;
    justify-content: space-between;
}

@media (max-width: 850px) {
    .faq-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        width: 100%;
    }

   .faq-container  .faq-content  .faq-list { 
        padding: 0;
    }
}

.see-more-link {
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    margin-top: 20px;
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #005678;

}

@media (max-width: 850px) {
    .see-more-link {
        margin-top: 40px;
        align-self: center;
        justify-content: center;
    }
}




.faq-section-title {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 40px;
    leading-trim: NONE;
    line-height: 120%;
    letter-spacing: 0%; 
    color: #0D2B37;
}

@media (max-width: 850px) {
    .faq-section-title {
        text-align: center;
        font-size: 26px;
    }
}

.faq-illustration {
    width: 100%;
    height: auto;
    max-width: 295px;
    max-height: 295px;
    margin-top: 92px;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    border-radius: 12px;
}

@media (max-width: 850px) {
    .faq-illustration {
        display: none;
    }
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}


@media (max-width: 850px) {
    .faq-list {
        width: 100%;
    }
}

.faq-item {
    min-height: 84px;
    border-radius: 16px;
    transition: 0.3s ease-in-out;
    background-color: #F6F6F6;
    max-width: 800px;
    width: 100%;
}

.faq-question {
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #0D2B37;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px;
}

.faq-item:hover {
   background-color: #E2E2E2;
}

.faq-toggle {
    font-family: Poppins;
    font-weight: 500;
    font-style: Medium;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: #005678;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0;
}

.faq-answer.active {
    max-height: 1000px;
    opacity: 1;
    padding-top: 0;
}

.faq-question .faq-toggle-icon {
    transition: transform 0.3s ease;
}

.faq-answer-text {
    color: var(--text-secondary);
    line-height: var(--line-height-base);
    margin: 0;
    padding: 0 24px 24px 24px;
    transition: padding 0.3s ease;
}

.faq-question.active .faq-toggle-icon {
    transform: rotate(45deg);
}


