/* ===================================================
   PRIVACY HERO
=================================================== */

.privacy-hero {
    width: 100%;
    min-height: 72vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 180px 20px 120px;

    background:
        radial-gradient(circle at top right,
            rgba(20, 99, 123, .08),
            transparent 35%),
        radial-gradient(circle at bottom left,
            rgba(255, 123, 34, .08),
            transparent 35%),
        #f7f8fb;
}

.privacy-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.privacy-tag {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;

    border-radius: 100px;

    background: rgba(20, 99, 123, .08);

    color: var(--qiro);

    font-size: 13px;

    letter-spacing: 2px;

    font-weight: 600;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.privacy-container h1 {

    font-size: clamp(52px, 7vw, 92px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 28px;

    background: linear-gradient(135deg,
            #101722 0%,
            #14637b 45%,
            #2b9bc1 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.last-update {

    color: #6b7280;

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 32px;
}

.hero-desc {

    max-width: 900px;

    margin: auto;

    font-size: 20px;

    color: #4b5563;

    line-height: 1.9;

    font-weight: 300;
}



/* ===================================================
   HERO RESPONSIVE
=================================================== */

@media (max-width:1200px) {

    .privacy-hero {

        padding: 170px 30px 100px;

    }

    .hero-desc {

        font-size: 19px;

    }

}


@media (max-width:992px) {

    .privacy-hero {

        min-height: 65vh;

        padding: 160px 30px 90px;

    }

    .privacy-container h1 {

        font-size: 60px;

    }

    .hero-desc {

        font-size: 18px;

        line-height: 1.8;

    }

    .last-update {

        font-size: 17px;

    }

}


@media (max-width:768px) {

    .privacy-hero {

        padding: 150px 25px 80px;

    }

    .privacy-tag {

        font-size: 12px;

        padding: 7px 16px;

    }

    .privacy-container h1 {

        font-size: 48px;

        letter-spacing: -1px;

    }

    .hero-desc {

        font-size: 17px;

    }

    .last-update {

        font-size: 16px;

    }

}


@media (max-width:576px) {

    .privacy-hero {

        padding: 140px 18px 70px;

    }

    .privacy-container h1 {

        font-size: 40px;

    }

    .hero-desc {

        font-size: 16px;

        line-height: 1.8;

    }

    .last-update {

        font-size: 15px;

    }

}

@media (max-width:425px) {

    .privacy-container h1 {

        font-size: 34px;

    }

    .hero-desc {

        font-size: 15px;

    }

}

@media (max-width:320px) {

    .privacy-container h1 {

        font-size: 30px;

    }

    .hero-desc {

        font-size: 14px;

    }

}



/* ===================================================
   PRIVACY CONTENT
=================================================== */

.privacy-content {

    padding: 90px 20px 120px;

    background: #ffffff;

}

.privacy-wrapper {

    max-width: 1150px;

    margin: auto;

    display: flex;

    flex-direction: column;

    gap: 35px;

}



/* ===================================================
   PRIVACY CARD
=================================================== */

.privacy-card {

    position: relative;

    display: flex;

    gap: 40px;

    padding: 45px;

    background: #fff;

    border-radius: 24px;

    border: 1px solid rgba(20, 99, 123, .08);

    box-shadow:
        0 15px 40px rgba(16, 23, 34, .05);

    transition: .45s ease;

    overflow: hidden;

}

.privacy-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 6px;
    height: 100%;

    background: linear-gradient(180deg,
            #14637b,
            #2b9bc1,
            #022727);

}

.privacy-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(16, 23, 34, .10);

}

.card-number {

    min-width: 90px;

    height: 90px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg,
            #14637b,
            #2b9bc1);

    color: #fff;

    font-size: 28px;

    font-weight: 700;

    flex-shrink: 0;

}

.card-content {

    flex: 1;

}

.card-content h2 {

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 22px;

    color: #101722;

}

.card-content p {

    font-size: 17px;

    line-height: 1.9;

    color: #5b6472;

    margin-bottom: 18px;

}

.card-content ul {

    padding-left: 22px;

}

.card-content li {

    font-size: 17px;

    line-height: 1.9;

    color: #5b6472;

    margin-bottom: 14px;

}

.card-content li::marker {

    color: #14637b;

}



/* ===================================================
   CARD RESPONSIVE
=================================================== */

@media(max-width:1200px) {

    .privacy-card {

        padding: 40px;

    }

}

@media(max-width:992px) {

    .privacy-content {

        padding: 80px 25px 100px;

    }

    .privacy-card {

        gap: 28px;

        padding: 35px;

    }

    .card-number {

        width: 75px;

        height: 75px;

        min-width: 75px;

        font-size: 24px;

    }

    .card-content h2 {

        font-size: 28px;

    }

    .card-content p,
    .card-content li {

        font-size: 16px;

    }

}

@media(max-width:768px) {

    .privacy-card {

        flex-direction: column;

        align-items: flex-start;

        padding: 32px;

    }

    .card-number {

        width: 70px;

        height: 70px;

        min-width: 70px;

        font-size: 22px;

    }

    .card-content h2 {

        font-size: 26px;

    }

}

@media(max-width:576px) {

    .privacy-content {

        padding: 70px 16px 90px;

    }

    .privacy-card {

        padding: 26px;

        border-radius: 20px;

    }

    .card-content h2 {

        font-size: 24px;

    }

    .card-content p,
    .card-content li {

        font-size: 15px;

        line-height: 1.8;

    }

}

@media(max-width:425px) {

    .card-number {

        width: 60px;

        height: 60px;

        min-width: 60px;

        font-size: 20px;

    }

    .card-content h2 {

        font-size: 22px;

    }

}

@media(max-width:320px) {

    .privacy-card {

        padding: 22px;

    }

    .card-content h2 {

        font-size: 20px;

    }

    .card-content p,
    .card-content li {

        font-size: 14px;

    }

}

/* ===================================================
   CONTACT SECTION
=================================================== */
/*==============================
        CONTACT SECTION
==============================*/

.contact-section {

    padding: 90px 20px 120px;

    background: #f5f6f8;

}

.contact-card {

    max-width: 1200px;

    margin: auto;

    padding: 55px 50px;

    border-radius: 26px;

    background: linear-gradient(135deg, #022a32, #14637b);

    color: #fff;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);

}

.contact-card h2 {

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 22px;

}

.contact-card h3 {

    font-size: 22px;

    font-weight: 500;

    margin-bottom: 40px;

    color: rgba(255, 255, 255, .92);

}

.contact-row {

    display: flex;


    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;

}

.contact-row:last-child {

    margin-bottom: 0;

}

.contact-row i {

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    border-radius: 50%;

    color: #157b79;

    flex-shrink: 0;
}

.contact-row i::before {

    font-size: 20px;

}

.contact-row p {

    color: #f1f5f9;

    font-size: 20px;

    line-height: 1.8;

}

.contact-row a {

    color: #ffffff;

    font-size: 20px;

    transition: .35s;

}

.contact-row a:hover {

    color: #ff7b22;

}