@font-face {
    font-family: "AdorHairlineExtraBold";
    src: url("../fonnts.com-212185/fonts/fonnts.com-Ador_Hairline_ExtraBold.otf")
        format("opentype");
}

:root {
    --privacy-gold: rgba(211, 171, 85, 1);
    --privacy-gold-dark: rgb(207, 145, 10);
    --privacy-dark: rgba(39, 58, 65, 1);
    --privacy-muted: rgba(88, 88, 88, 1);
    --privacy-bg: rgba(248, 247, 247, 1);
    --privacy-card-shadow: 0 8px 32px rgba(39, 58, 65, 0.08);
}

body {
    overflow-x: hidden;
    background-color: var(--privacy-bg);
}

.navbar-nav {
    padding: 20px 20px;
}

.navbar-nav .nav-link {
    font-family: "AdorHairlineExtraBold", sans-serif !important;
    color: rgba(156, 156, 156, 1);
    font-size: 18px;
    margin-left: 15px;
}

.nav-link.active {
    border-bottom: 1.5px solid var(--privacy-gold) !important;
    color: var(--privacy-gold) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--privacy-gold) !important;
    border-bottom: 1.5px solid var(--privacy-gold);
}

.btn-custom {
    background-color: rgb(216, 162, 47);
    color: var(--privacy-bg);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
}

.btn-outline-custom {
    background-color: var(--privacy-bg);
    color: var(--privacy-gold);
    border: var(--privacy-gold) 1px solid;
    padding: 15px 22px;
    border-radius: 50px;
}

.btn-custom:hover {
    background-color: var(--privacy-gold-dark);
    color: var(--privacy-bg);
}

.btn-outline-custom:hover {
    background-color: var(--privacy-gold);
    color: var(--privacy-bg);
}

/* Hero */
.privacy-hero {
    position: relative;
    background: linear-gradient(
            135deg,
            rgba(39, 58, 65, 0.92) 0%,
            rgba(30, 48, 54, 0.88) 50%,
            rgba(39, 58, 65, 0.85) 100%
        ),
        url("/front/images/9ea71dbe8da1007ea3cbea2ce623e6007df0d94e.jpg")
            center/cover no-repeat;
    min-height: 42vh;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 4rem 0 3rem;
}

.privacy-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--privacy-gold), rgb(216, 162, 47));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 32px rgba(211, 171, 85, 0.35);
}

.privacy-hero h1 {
    font-family: "AdorHairlineExtraBold", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.privacy-hero p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 640px;
    line-height: 1.8;
    margin-bottom: 0;
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.privacy-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
}

.privacy-breadcrumb {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

.privacy-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.privacy-breadcrumb a:hover {
    text-decoration: underline;
}

/* Summary cards */
.privacy-summary {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 1rem;
}

.privacy-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--privacy-card-shadow);
    border: 1px solid rgba(211, 171, 85, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.privacy-summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(39, 58, 65, 0.12);
}

.privacy-summary-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        rgba(211, 171, 85, 0.15),
        rgba(216, 162, 47, 0.08)
    );
    color: var(--privacy-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.privacy-summary-card h3 {
    font-family: "AdorHairlineExtraBold", sans-serif;
    font-size: 1.15rem;
    color: var(--privacy-dark);
    margin-bottom: 0.5rem;
}

.privacy-summary-card p {
    color: var(--privacy-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Main content layout */
.privacy-main {
    padding: 3rem 0 4rem;
}

.privacy-toc {
    position: sticky;
    top: 1.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--privacy-card-shadow);
    border: 1px solid rgba(211, 171, 85, 0.12);
}

.privacy-toc h2 {
    font-family: "AdorHairlineExtraBold", sans-serif;
    font-size: 1.1rem;
    color: var(--privacy-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(211, 171, 85, 0.3);
}

.privacy-toc nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.privacy-toc a {
    color: var(--privacy-muted);
    text-decoration: none;
    font-size: 0.92rem;
    padding: 0.45rem 0.75rem;
    border-radius: 10px;
    transition: all 0.2s ease;
    line-height: 1.5;
}

.privacy-toc a:hover,
.privacy-toc a.active {
    background: rgba(211, 171, 85, 0.12);
    color: var(--privacy-dark);
}

/* Policy sections */
.privacy-section {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--privacy-card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    scroll-margin-top: 1.5rem;
}

.privacy-section-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.privacy-section-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--privacy-gold), rgb(216, 162, 47));
    color: #fff;
    font-family: "AdorHairlineExtraBold", sans-serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-section h2 {
    font-family: "AdorHairlineExtraBold", sans-serif;
    font-size: 1.45rem;
    color: var(--privacy-dark);
    margin: 0;
    line-height: 1.4;
    padding-top: 0.35rem;
}

.privacy-section p,
.privacy-section li {
    color: var(--privacy-muted);
    line-height: 1.85;
    font-size: 1rem;
}

.privacy-section ul {
    padding-right: 1.25rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-section strong {
    color: var(--privacy-dark);
}

.privacy-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
    font-size: 0.95rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(211, 171, 85, 0.2);
}

.privacy-data-table th,
.privacy-data-table td {
    padding: 0.85rem 1rem;
    text-align: right;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.privacy-data-table th {
    background: rgba(211, 171, 85, 0.12);
    color: var(--privacy-dark);
    font-weight: 600;
}

.privacy-data-table tr:last-child td {
    border-bottom: none;
}

.privacy-data-table tr:hover td {
    background: rgba(248, 247, 247, 0.6);
}

.privacy-contact-box {
    background: linear-gradient(
        135deg,
        rgba(39, 58, 65, 1) 0%,
        rgba(30, 48, 54, 1) 100%
    );
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    color: #fff;
    margin-top: 1rem;
}

.privacy-contact-box a {
    color: var(--privacy-gold);
    text-decoration: none;
}

.privacy-contact-box a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    padding: 70px 20px 20px;
    direction: ltr;
    text-align: end;
}

.footer-column h6 {
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: var(--privacy-dark);
    font-size: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: rgba(156, 156, 156, 1);
    font-size: 16px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-icons img {
    margin-left: 10px;
}

.footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 30px;
    padding-top: 10px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 991px) {
    .privacy-hero {
        min-height: 36vh;
        padding: 3rem 0 2.5rem;
    }

    .privacy-summary {
        margin-top: -1.5rem;
    }

    .privacy-toc {
        position: static;
        margin-bottom: 2rem;
    }

    .privacy-toc nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.25rem;
    }
}

@media (max-width: 576px) {
    .privacy-section {
        padding: 1.5rem 1.25rem;
    }

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

    .privacy-data-table {
        font-size: 0.85rem;
    }

    .privacy-data-table th,
    .privacy-data-table td {
        padding: 0.65rem 0.75rem;
    }
}
