﻿/*==================================================
                    HERO
==================================================*/

.privacy-hero {
    background: linear-gradient(135deg,#08111F,#13233C);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-hero-subtitle {
    display: inline-block;
    color: #D4AF37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.privacy-hero h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    margin: 15px 0 20px;
    line-height: 1.2;
}

.privacy-hero p {
    max-width: 850px;
    margin: auto;
    color: rgba(255,255,255,.88);
    font-size: 20px;
    line-height: 2;
}

/*==================================================
                    CONTENT
==================================================*/

.privacy-content {
    background: #f8f9fb;
    padding: 70px 0;
}

/*==================================================
                    GRID
==================================================*/

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/*==================================================
                    CARD
==================================================*/

.privacy-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(200,155,60,.10);
    box-shadow: 0 20px 45px rgba(0,0,0,.06);
    transition: .35s;
}

    .privacy-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(0,0,0,.10);
    }

/*==================================================
                    ICON
==================================================*/

.privacy-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FBF6EC;
    color: #D4AF37;
    font-size: 28px;
}

.privacy-card:hover .privacy-icon {
    background: #D4AF37;
    color: #fff;
    transform: rotateY(180deg);
}

/*==================================================
                    TEXT
==================================================*/

.privacy-card h3 {
    color: #08111F;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 18px;
}

.privacy-hero p {
    color: #E5EAF1 !important;
    max-width: 820px;
    margin: 0 auto;
    font-size: 22px;
    line-height: 2;
}

/*==================================================
                    RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .privacy-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .privacy-hero {
        padding: 90px 0 70px;
    }

        .privacy-hero h1 {
            font-size: 40px;
        }

    .privacy-grid {
        grid-template-columns: 1fr;
    }
}
