/* PRIVACY POLICY STYLES */

.privacy-hero {
    background: linear-gradient(rgba(var(--rgb-navy), 0.85), rgba(var(--rgb-navy), 0.85)), url('../images/pagetitle-bg.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    color: #fff;
    text-align: left;
}

.privacy-hero .hero-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.privacy-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    color: white;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.privacy-hero .hero-sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
}

.privacy-content-section {
    padding: 100px 0;
    background-color: var(--text-dark);
}

.privacy-body {
    max-width: 850px;
    margin: 0 auto;
}

.privacy-block {
    margin-bottom: 50px;
}

.privacy-block h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-block h2 span {
    color: var(--gold-primary);
    font-size: 16px;
    font-weight: 800;
    min-width: 30px;
}

.privacy-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-deep);
    margin: 25px 0 15px;
}

.privacy-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-slate);
    margin-bottom: 20px;
}

.privacy-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.privacy-block ul li {
    font-size: 17px;
    color: var(--text-slate);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.privacy-block ul li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-size: 14px;
}

.privacy-contact-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(var(--rgb-navy), 0.05);
}

.privacy-contact-card p {
    margin-bottom: 10px;
}

.privacy-contact-card strong {
    color: var(--navy-deep);
}

.hero-crumbs {
    margin-top: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.hero-crumbs a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.hero-crumbs a:hover {
    color: var(--gold-primary);
}

.hero-crumbs .sep {
    margin: 0 10px;
}

.hero-crumbs .cur {
    color: var(--gold-primary);
    font-weight: 600;
}

@media (max-width: 991px) {
    .privacy-hero h1 {
        font-size: 42px;
    }

    .privacy-content-section {
        padding: 60px 0;
    }
}