/* Privacy Policy Page Styles */

.privacy-policy-page {
    background-color: #fff;
}

.privacy-header {
    background-color: #000;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.privacy-header h1 {
    font-family: 'JCBEuro BoldCondensed Regular', sans-serif !important;
    font-size: 3rem;
    line-height: 1;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.privacy-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: rgb(250, 167, 71);
}

.privacy-subtitle {
    font-family: 'JCBEuro Roman Regular', sans-serif !important;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #D1D5DB;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgb(250, 167, 71);
    font-family: 'JCBEuro Roman Regular', sans-serif;
    line-height: 1.7;
    color: #333;
}

.privacy-policy-page h2 {
    font-size: 1.8rem;
    color: #000;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 600;
    position: relative;
    font-family: 'JCBEuro Bold Regular', sans-serif;
    padding-bottom: 0.75rem;
}

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

.privacy-policy-page h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: rgb(250, 167, 71);
}

.privacy-policy-page p {
    font-family: 'JCBEuro Roman Regular', sans-serif !important;
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #333;
    margin-bottom: 0;
}

.privacy-policy-page ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-policy-page li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    font-family: 'JCBEuro Roman Regular', sans-serif;
    font-weight: 400;
    color: #333;
}

.privacy-policy-page li::before {
    content: '"';
    color: rgb(250, 167, 71);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-policy-page strong {
    color: #000;
    font-weight: 600;
}

.privacy-contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 3rem 0 2rem 0;
    border-left: 4px solid rgb(250, 167, 71);
    border-radius: 4px;
}

.privacy-contact-info h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.privacy-contact-info h2::before {
    display: none;
}

.email-link {
    color: rgb(250, 167, 71);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
    font-family: 'JCBEuro Roman Regular', sans-serif;
}

.email-link:hover {
    border-bottom: 1px solid rgb(250, 167, 71);
}

/* Cookie Table */
.privacy-table-wrapper {
    overflow-x: auto;
    margin: 1rem 0 2rem;
    -webkit-overflow-scrolling: touch;
}

.privacy-cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JCBEuro Roman Regular', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-cookie-table thead {
    background: #1a1a1a;
    color: #ffffff;
}

.privacy-cookie-table th {
    padding: 10px 14px;
    text-align: left;
    font-family: 'JCBEuro Bold Regular', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.privacy-cookie-table td {
    padding: 10px 14px;
    border-bottom: 1px solid #e5e5e5;
    color: #333;
    vertical-align: top;
}

.privacy-cookie-table tbody tr:hover {
    background: #fafafa;
}

.privacy-cookie-table code {
    background: #f0f0f0;
    padding: 2px 6px;
    font-size: 0.8rem;
    border-radius: 3px;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-container {
        padding: 2rem 1rem;
    }

    .privacy-policy-page h2 {
        font-size: 1.5rem;
    }

    .privacy-policy-page h2::after {
        width: 50px;
    }

    .privacy-contact-info {
        padding: 1.5rem;
        margin: 2rem 0;
    }
}