/* style/privacy-policy.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #2C3E50;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --background-dark: #1a1a2e;
    --card-background: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.2);
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-light); /* Body background is dark, so text should be light */
    background-color: var(--background-dark);
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(44, 62, 80, 0.8) 100%);
    overflow: hidden;
}

.page-privacy-policy__hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    color: var(--text-color-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    object-fit: cover;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-color-light);
}

.page-privacy-policy__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-privacy-policy__paragraph {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-color-light);
}

.page-privacy-policy__paragraph a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-privacy-policy__paragraph a:hover {
    color: #ffd700cc;
}

.page-privacy-policy__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--text-color-light);
}

.page-privacy-policy__list-item strong {
    color: var(--primary-color);
}

.page-privacy-policy__image-content {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin: 30px 0;
    object-fit: cover;
}

.page-privacy-policy__contact-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-privacy-policy__contact-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-color-light);
}

.page-privacy-policy__contact-item strong {
    color: var(--primary-color);
}

.page-privacy-policy__cta-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 50px;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-privacy-policy__cta-button:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 30px;
    }
    .page-privacy-policy__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-privacy-policy__content-area {
        padding: 40px 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__cta-button {
        font-size: 1em;
        padding: 12px 30px;
        width: 100% !important;
        max-width: 300px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image-content {
        border-radius: 8px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__container {
        padding-left: 0;
        padding-right: 0;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__contact-item {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.9em;
    }
}