﻿/* ================================================================
   Privacy.css
   Top sections:  priv-* classes (page header, body text, FAQ)
   Bottom sections: tc-* classes copied exactly from TermsConditions.css
                    (feature boxes, reasons, testimonials, CTA)
   ================================================================ */


/* ---------------------------------------------------------------
   PAGE HEADER
   --------------------------------------------------------------- */
.priv-page-header {
    background-color: #FFFFFF;
    padding: 32px 24px 24px;
}

.priv-page-header-inner {
    max-width: 1148px;
    margin: 0 auto;
}

.priv-breadcrumb {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #73767B;
    line-height: 100%;
    margin: 0 0 20px;
}

.priv-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 50px;
    font-weight: 400;
    color: #2B2B2B;
    line-height: 62px;
    margin: 0 0 24px;
}

.priv-last-modified {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #505357;
    line-height: 18px;
    margin: 0;
}


/* ---------------------------------------------------------------
   PRIVACY BODY TEXT
   --------------------------------------------------------------- */
.priv-body-outer {
    background-color: #FFFFFF;
    padding: 0px 24px 40px 24px;
}

.priv-body-inner {
    max-width: 1148px;
    margin: 0 auto;
}

.priv-body-text {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #2B2B2B;
    margin: 0 0 20px;
}

    .priv-body-text:last-child {
        margin-bottom: 0;
    }


/* ---------------------------------------------------------------
   FAQ SECTION
   --------------------------------------------------------------- */
.priv-faq-outer {
    background-color: #F6F6F6;
    padding: 60px 24px;
}

.priv-faq-inner {
    max-width: 1148px;
    margin: 0 auto;
}

.priv-faq-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 38px;
    font-weight: 600;
    color: #2B2B2B;
    line-height: 1.2;
    margin: 0 0 40px;
    text-align: center;
}

.priv-faq-list {
    width: 756px;
    max-width: 100%;
    margin: 0 auto;
}

.priv-faq-item {
    background-color: #FFFFFF;
    width: 756px;
    max-width: 100%;
    min-height: 50px;
    margin: 0 auto 8px auto;
    overflow: hidden;
}

.priv-faq-trigger {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

    .priv-faq-trigger span:first-child {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: #2B2B2B;
        line-height: 30px;
        flex: 1;
    }

    .priv-faq-trigger:hover span:first-child {
        color: #0072CE;
    }

.priv-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 22px 22px;
    background-position: center;
    transition: transform 0.25s ease-in-out;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Ccircle cx='14' cy='14' r='12.5' stroke='%230072CE' stroke-width='1.5'/%3E%3Cpolyline points='9,12.5 14,17.5 19,12.5' stroke='%230072CE' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.priv-faq-item.priv-open .priv-faq-icon {
    transform: rotate(-180deg);
}

.priv-faq-body {
    display: none;
    background-color:#F6F6F6;
    padding: 10px 24px 20px 20px;
}

    .priv-faq-body p {
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
        color: #505357;
        margin: 0 0 16px;
    }

        .priv-faq-body p:last-child {
            margin-bottom: 0;
        }

    .priv-faq-body a {
        color: #0072CE;
        text-decoration: underline;
    }

        .priv-faq-body a:hover {
            color: #1E3575;
        }

.priv-faq-item.priv-open .priv-faq-body {
    display: block;
}


/* ===============================================================
   BOTTOM SECTIONS — tc-* rules copied exactly from TermsConditions.css
   =============================================================== */

/* ── Three Feature Boxes ── */
.tc-feature-section {
    padding: 48px 0 0;
}

.tc-feature-grid {
    max-width: 1148px;
    margin: 0 auto;
    padding: 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tc-feature-box {
    padding: 24px 20px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    background: #ffffff;
    box-shadow: 0px 0px 22px 2px #2B2B2B1F;
}

.tc-feature-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .tc-feature-icon img {
        width: 48px;
        height: 48px;
        display: block;
    }

.tc-feature-text h3 {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2B2B2B;
    line-height: 24px;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tc-feature-text p {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #505357;
    line-height: 22px;
    margin: 0;
    width: 195px;
}

/* ── 5 Good Reasons – contained dark navy box ── */
.tc-reasons-section {
    background: transparent;
    padding: 40px 40px;
    margin-top: 40px;
}

.tc-reasons-box {
    max-width: 1148px;
    margin: 0 auto;
    background-color: #1E3575;
    padding: 36px 84px 28px;
    border-radius: 4px;
}

.tc-reasons-title {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.tc-reasons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .tc-reasons-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-family: 'Open Sans', Arial, sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #ffffff;
        line-height: 30px;
        margin-bottom: 12px;
    }

.tc-reasons-check {
    width: 18px;
    height: 14px;
    min-width: 18px;
    margin-top: 8px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* ── Testimonials: width + indicator overrides ── */
.testimonials-section {
    width: 100%;
    box-sizing: border-box;
}

    .testimonials-section .container {
        width: 100%;
        max-width: 1148px;
        margin: 0 auto;
        padding: 0 40px;
        box-sizing: border-box;
    }

    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Carousel indicators forced visible below slides */
    .testimonials-section .carousel {
        overflow: visible;
    }

    .testimonials-section .carousel-inner {
        overflow: hidden;
    }

    .testimonials-section .carousel-indicators {
        position: static !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
        margin-bottom: 0;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0;
        bottom: auto;
        left: auto;
        right: auto;
        z-index: 1;
    }

        .testimonials-section .carousel-indicators [data-bs-slide-to],
        .testimonials-section .carousel-indicators button {
            display: block !important;
            opacity: 1 !important;
            width: 12px !important;
            height: 12px !important;
            border-radius: 50% !important;
            background-color: #D9D9D9 !important;
            border: none !important;
            margin: 0 5px !important;
            padding: 0 !important;
            box-sizing: border-box !important;
            flex-shrink: 0;
            cursor: pointer;
        }

            .testimonials-section .carousel-indicators [data-bs-slide-to].active,
            .testimonials-section .carousel-indicators button.active {
                background-color: #0072CE !important;
            }

/* ── CTA section ── */
.tc-cta-section {
    background: transparent;
    padding: 0 40px 64px;
}

.tc-cta-inner {
    max-width: 1148px;
    margin: 0 auto;
    background-color: #F5F9FD;
    padding: 40px 48px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 48px;
}

.tc-cta-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tc-cta-label {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #2B2B2B;
    text-align: center;
    margin: 0;
    line-height: 24px;
}

.tc-cta-or {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    color: #505357;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
}

    .tc-cta-or::before,
    .tc-cta-or::after {
        content: "";
        height: 1px;
        background: #D9D9D9;
        width: 30px;
        flex-shrink: 0;
    }

.tc-cta-btn-filled {
    display: inline-block;
    background-color: #0072CE;
    color: #ffffff;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    min-width: 300px;
    text-align: center;
    border: 2px solid #0072CE;
    transition: background-color 0.2s, border-color 0.2s;
}

    .tc-cta-btn-filled:hover {
        background-color: #1E3575;
        border-color: #1E3575;
        color: #ffffff;
        text-decoration: none;
    }

.tc-cta-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #0072CE;
    border: 2px solid #0072CE;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50px;
    text-decoration: none;
    min-width: 300px;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

    .tc-cta-btn-outline:hover {
        background-color: #0072CE;
        color: #ffffff;
        text-decoration: none;
    }


/* ================================================================
   MOBILE  (max-width: 768px)
   ================================================================ */
@media (max-width: 768px) {

    /* --- Page Header --- */
    .priv-page-header {
        padding: 20px 20px 10px 20px;
    }

    .priv-breadcrumb {
        font-size: 16px;
        line-height: 32px;
    }

    .priv-title {
        font-size: 32px;
        font-weight: 400;
        line-height: 100%;
    }

    .priv-last-modified {       
        font-size: 14px;
        font-weight: 600;        
        line-height: 18px;
    }

    /* --- Body text --- */
    .priv-body-outer {
        padding: 0px 79px 24px 20px;
    }

    .priv-body-text {
        font-size: 16px;
        line-height: 26px;
    }

    /* --- FAQ --- */
    .priv-faq-outer {
        padding: 32px 20px;
    }

    .priv-faq-title {
        font-size: 28px;
        text-align: left;
        margin-bottom: 24px;
        padding-right:15px;
    }

    .priv-faq-list,
    .priv-faq-item {
        width: 100%;
    }

    .priv-faq-trigger {
        padding: 16px;
    }

        .priv-faq-trigger span:first-child {
            font-size: 16px;
            line-height: 24px;
            padding-right: 95px;
        }

    .priv-faq-body {
        padding: 0 16px 20px;
    }

        .priv-faq-body p {
            font-size: 16px;
            line-height: 26px;
        }

    /* --- Feature boxes --- */
    .tc-feature-section {
        padding: 32px 0 0;
    }

    .tc-feature-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .tc-feature-text h3 {
        font-size: 16px;
        line-height: 22px;
    }

    .tc-feature-text p {
        font-size: 14px;
        line-height: 18px;
        width: 220px;
    }

    /* --- 5 Reasons --- */
    .tc-reasons-section {
        padding: 32px 20px;
        margin-top: 24px;
        margin-bottom: 40px;
    }

    .tc-reasons-box {
        padding: 28px 24px 20px;
    }

    .tc-reasons-title {
        font-size: 28px;
    }

    .tc-reasons-list li {
        font-size: 16px;
        line-height: 22px;
    }

    /* --- Testimonials --- */
    .testimonials-section .container {
        padding: 0 20px;
    }

    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    h2.testimonials-section-title-left {
        font-size: 28px;
        font-weight: 600;
    }

    /* --- CTA --- */
    .tc-cta-section {
        padding: 0 20px 48px;
    }

    .tc-cta-inner {
        flex-direction: column;
        align-items: center;
        padding: 32px 24px;
        gap: 16px;
    }

    .tc-cta-or {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        justify-content: center;
        padding-bottom: 0;
    }

        .tc-cta-or::before,
        .tc-cta-or::after {
            flex: 1;
            width: auto;
        }

    .tc-cta-btn-filled,
    .tc-cta-btn-outline {
        min-width: ;
        width: 100%;
    }
}
