/* Custom style for Privacy Policy page */

.privacy-hero {
    position: relative;
    color: #fff;
    background: linear-gradient(135deg, #03050b 0%, #111a25 48%, #09121f 100%);
    padding: 100px 0;
    overflow: hidden;
}

.privacy-hero-glow {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201, 148, 76, 0.22) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.privacy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.privacy-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-breadcrumb a:hover {
    color: #c9944c;
}

.privacy-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.privacy-breadcrumb strong {
    color: #c9944c;
    font-weight: 500;
}

.privacy-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9944c;
    margin-bottom: 10px;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    line-height: 1.6;
    margin-bottom: 0;
}

.privacy-body {
    background-color: #f8f4ee;
    padding: 80px 0;
}

.privacy-card {
    background: #ffffff;
    border: 1px solid rgba(201, 148, 76, 0.12);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.privacy-sidebar-container {
    position: relative;
}

.privacy-sidebar {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 1px solid rgba(201, 148, 76, 0.12);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: #101820;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201, 148, 76, 0.15);
}

.toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-item {
    line-height: 1.4;
}

.toc-h2 {
    padding-left: 0;
}

.toc-h3 {
    padding-left: 15px;
}

.toc-link {
    color: #555555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.toc-link:hover,
.toc-link.active {
    color: #c9944c;
    transform: translateX(3px);
    font-weight: 600;
}

.toc-h2>.toc-link {
    font-size: 14px;
}

.toc-h3>.toc-link {
    font-size: 13px;
    color: #777777;
}

/* Custom styles for rendered markdown/HTML */
.privacy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #101820;
    margin-top: 45px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    scroll-margin-top: 110px;
}

.privacy-content h2::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 22px;
    background: #c9944c;
    border-radius: 3px;
}

.privacy-content h2:first-of-type {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #101820;
    margin-top: 30px;
    margin-bottom: 15px;
    scroll-margin-top: 110px;
    padding-left: 18px;
    border-left: 2px solid rgba(201, 148, 76, 0.3);
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 20px;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
    margin-top: 15px;
}

.privacy-content li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
}

.privacy-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 2px;
    color: #c9944c;
    font-size: 13px;
}

.privacy-content li p {
    margin-bottom: 0;
    display: inline;
}

/* Responsiveness */
@media (max-width: 991px) {
    .privacy-sidebar-container {
        margin-bottom: 40px;
    }

    .privacy-sidebar {
        position: static;
        top: 0;
    }

    .privacy-hero {
        padding: 80px 0;
    }

    .privacy-title {
        font-size: 2.5rem;
    }

    .privacy-card {
        padding: 30px;
    }
}