/*=============== HEADER START ===============*/
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --first-color: hsl(0, 0%, 0%);
    --first-color-lighten: hsl(220, 68%, 97%);
    --title-color: hsl(0, 0%, 0%);
    --text-color: hsl(220, 12%, 45%);
    --body-color: hsl(0, 0%, 100%);
    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", Helvetica,
        Arial, sans-serif;
    --title-font: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica,
        Arial, sans-serif;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

.gdbg {
    background-image: url(images/lock.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
    border-radius: 40px;
    width: 1120px;
}

@media screen and (max-width: 768px) {
    .gdbg {
        padding: 2rem 0;
    }
}

@media screen and (max-width: 480px) {
    .gdbg {
        background-image: url(images/lock.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 30vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        margin-top: 50px;
        border-radius: 0px;
    }

    .priv {
        font-size: 40px !important;
    }
}

.priv {
    font-family: var(--title-font);
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
}

.faqContainerX1 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.faqItemA3 {
    background: #fff;
    border-bottom: 1px solid #d2d2d7;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.faqHeaderB7 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faqHeaderB7:hover {
    background-color: #f8f9fa;
}

.faqHeaderB7 h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    color: #000;
    font-family: var(--title-font);
}

.toggleIconC9 {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faqContentD2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0 20px;
}

.faqContentD2 p {
    margin: 0;
    padding: 20px 0;
    line-height: 1.6;
    color: #666;
    font-size: 17px;
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 25px;
}

.toggleIconC9 i {
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 35px;
}

.faqItemA3.active .toggleIconC9 {
    transform: rotate(45deg);
}

.faqItemA3.active .faqContentD2 {
    max-height: 500px;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .faqContainerX1 {
        padding: 10px;
    }

    .faqHeaderB7 h2 {
        font-size: 18px;
    }

    .faqContentD2 p {
        font-size: 14px;
    }
}