/* style/privacy-policy.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #1A1A1A;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --background-dark: #0d0d0d;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: var(--text-color-light); /* Body background is dark, so text is light */
    background-color: var(--background-dark);
    padding-top: 120px; /* Adjust for fixed header on desktop */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    background-color: var(--secondary-color);
    text-align: center;
    overflow: hidden;
}

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

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

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

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__content-section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color-dark);
}

.page-privacy-policy__dark-section {
    background-color: var(--secondary-color);
}

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

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    color: var(--text-color-light);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

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

.page-privacy-policy__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-color-light);
}

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

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

.page-privacy-policy__inline-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__inline-link:hover {
    color: #FFC107; /* Slightly darker gold on hover */
    text-decoration: underline;
}

.page-privacy-policy__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.page-privacy-policy__image-centered {
    display: block;
    margin: 40px auto 20px auto;
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__image-small {
    max-width: 50%;
}

.page-privacy-policy__contact-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-privacy-policy__cta-wrapper {
    margin-top: 50px;
}

.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.2em;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
    background: #FFC107; /* Slightly darker gold on hover */
    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: 2.2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: 100px !important; /* Adjust for fixed header on mobile */
        font-size: 15px;
        line-height: 1.6;
    }
    .page-privacy-policy__hero-section,
    .page-privacy-policy__content-section {
        padding: 40px 15px;
    }
    .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__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
        padding-bottom: 10px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
        padding-left: 10px;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__list {
        margin-left: 15px;
    }
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image-full-width,
    .page-privacy-policy__image-centered,
    .page-privacy-policy__image-small {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
        padding: 0 !important; /* Ensure no extra padding pushes image */
    }
    .page-privacy-policy__image-centered {
        margin: 30px auto 15px auto;
    }
    .page-privacy-policy__image-small {
        max-width: 80% !important;
    }
    .page-privacy-policy__cta-wrapper {
        margin-top: 40px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-privacy-policy__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1.1em;
        padding: 12px 20px;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-privacy-policy__container {
        padding-left: 0;
        padding-right: 0;
    }
}

@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__sub-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__cta-button {
        font-size: 1em;
        padding: 10px 15px;
    }
}