/* style/privacy-policy.css */

:root {
    --primary-color: #E44D26;
    --secondary-color: #FFB800;
    --text-color-light: #f0f0f0;
    --text-color-dark: #333333;
    --bg-dark: #000;
    --bg-light: #ffffff;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --border-color: rgba(255, 255, 255, 0.15);
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-light); /* Default text color for dark body background */
    background-color: var(--bg-dark); /* Inherits from shared.css body, but explicitly set for clarity */
}

/* Ensure main content area has padding-top to clear fixed header */
.page-privacy-policy__hero-section {
    padding-top: 120px; /* Desktop: Adjust based on actual header height */
    background: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
    padding-bottom: 60px;
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    color: var(--text-color-light);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-privacy-policy__description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--text-color-dark);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
    background: darken(var(--secondary-color), 10%); /* Placeholder for CSS preprocessor like Sass/Less */
    background: #e6a700; /* Direct color for hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__content-area {
    background-color: var(--bg-light);
    color: var(--text-color-dark);
    padding: 80px 0;
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 15px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    max-width: 100%;
}

.page-privacy-policy__content-area h2 {
    margin-top: 60px;
    margin-bottom: 25px;
    text-align: left;
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 600;
}

.page-privacy-policy__content-area h3 {
    font-size: 1.5em;
    color: var(--text-color-dark);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-privacy-policy__content-area p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.page-privacy-policy__list li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.6;
}

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

/* Image styles */
.page-privacy-policy img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__content-area h2 {
        font-size: 1.8em;
    }
    .page-privacy-policy__content-area h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding-top: 100px; /* Mobile: Adjust based on actual header height */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 2.2em;
    }

    .page-privacy-policy__description {
        font-size: 1em;
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 25px;
        font-size: 1em;
        box-sizing: border-box;
    }

    .page-privacy-policy__content-area {
        padding: 50px 0;
    }

    .page-privacy-policy__container {
        padding: 0 15px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__content-area h2 {
        font-size: 1.6em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__content-area h3 {
        font-size: 1.2em;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .page-privacy-policy__content-area p,
    .page-privacy-policy__list li {
        font-size: 0.95em;
    }
    
    /* Images responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto !important;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__content-area h2 {
        font-size: 1.4em;
    }
    .page-privacy-policy__content-area h3 {
        font-size: 1.1em;
    }
    .page-privacy-policy__list {
        padding-left: 15px;
    }
}