/* 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-effective-date {
    background: rgba(var(--rgb-navy), 0.04);
    border-left: 4px solid var(--gold-primary);
    border-radius: 0 12px 12px 0;
    padding: 30px 35px;
    margin-bottom: 50px;
}

.privacy-effective-date p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-slate);
    margin-bottom: 12px;
}

.privacy-effective-date p:last-child {
    margin-bottom: 0;
}

.privacy-effective-date strong {
    color: var(--gold-primary);
    font-weight: 700;
}

.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: linear-gradient(135deg, rgba(11, 17, 26, 0.9) 0%, rgba(20, 30, 48, 0.95) 100%);
    border-radius: 20px;
    padding: 45px 50px;
    border: 1px solid rgba(178, 140, 64, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(178, 140, 64, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.privacy-contact-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-bottom: 18px;
    line-height: 1.7;
}

.privacy-contact-card p:first-child {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(178, 140, 64, 0.15);
}

.privacy-contact-card p:last-child {
    margin-bottom: 0;
}

.privacy-contact-card strong {
    color: var(--gold-primary) !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    min-width: 90px;
}

.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;
    }
}

.bhg-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--gold-primary) !important;
    color: #0b111a !important;
    font-weight: 700;
    padding: 14px 35px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    border: 2px solid var(--gold-primary) !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(178, 140, 64, 0.2);
}

.bhg-contact-btn:hover {
    background-color: transparent !important;
    color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 140, 64, 0.4);
    text-decoration: none !important;
}

.bhg-contact-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.bhg-contact-btn:hover i.ti-angle-right {
    transform: translateX(4px);
}