/* style/privacy-policy.css */

/* Base Styles */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: var(--secondary-color, #1A1A1A); /* Ensure dark background from shared.css */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding-top: 0; /* Assuming shared.css handles body padding-top for header offset */
    padding-bottom: 40px;
    background-color: var(--secondary-color, #1A1A1A);
    text-align: center;
    overflow: hidden; /* Prevent content overflow */
}

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

.page-privacy-policy__main-title {
    font-size: 42px;
    color: var(--primary-color, #FFD700); /* Gold color for main title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-privacy-policy__hero-description {
    font-size: 18px;
    color: #ffffff; /* White text for description */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__hero-image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

/* Content Area */
.page-privacy-policy__content-area {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--secondary-color, #1A1A1A); /* Ensure content area also has dark background */
    color: #f0f0f0; /* Light text */
}

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

.page-privacy-policy__section-title {
    font-size: 32px;
    color: var(--primary-color, #FFD700); /* Gold color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.page-privacy-policy__sub-section-title {
    font-size: 24px;
    color: #ffffff; /* White color for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.page-privacy-policy__text-block {
    font-size: 16px;
    margin-bottom: 20px;
    color: #f0f0f0; /* Light text */
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #f0f0f0; /* Light text */
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 16px;
    color: #f0f0f0; /* Light text */
}

.page-privacy-policy__list-item strong {
    color: #ffffff; /* Slightly brighter for emphasis */
}

.page-privacy-policy__link {
    color: var(--primary-color, #FFD700); /* Gold for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #ffd700cc; /* Slightly darker gold on hover */
}

.page-privacy-policy__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

/* Call to Action Buttons */
.page-privacy-policy__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure button adapts to container */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word;
}

.page-privacy-policy__btn-primary {
    background-color: var(--primary-color, #FFD700);
    color: #1A1A1A; /* Dark text for gold background */
    border: 2px solid var(--primary-color, #FFD700);
}

.page-privacy-policy__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000000;
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: var(--primary-color, #FFD700);
    border: 2px solid var(--primary-color, #FFD700);
}

.page-privacy-policy__btn-secondary:hover {
    background-color: var(--primary-color, #FFD700);
    color: #1A1A1A;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 38px;
    }
    .page-privacy-policy__section-title {
        font-size: 28px;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-privacy-policy__hero-section {
        padding-top: 0 !important; /* Ensure no double padding if shared provides it for body */
        padding-bottom: 30px;
    }
    .page-privacy-policy__main-title {
        font-size: 30px;
        margin-bottom: 15px;
        padding: 0 15px;
    }
    .page-privacy-policy__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    .page-privacy-policy__hero-image-content {
        margin-top: 20px;
    }

    /* Content Area */
    .page-privacy-policy__content-area {
        padding: 40px 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-privacy-policy__container {
        padding: 0;
    }
    .page-privacy-policy__section-title {
        font-size: 26px;
        margin-top: 30px;
        margin-bottom: 20px;
        padding: 0 5px;
    }
    .page-privacy-policy__sub-section-title {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
        padding: 0 5px;
    }
    .page-privacy-policy__text-block,
    .page-privacy-policy__list-item {
        font-size: 15px;
        padding: 0 5px; /* Slight padding for readability on small screens */
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }

    /* Images */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Ensure min-width for mobile */
        min-height: 200px !important; /* Ensure min-height for mobile */
        box-sizing: border-box !important;
    }
    .page-privacy-policy__image-wrapper {
        padding: 0 10px;
        box-sizing: border-box;
    }

    /* Buttons */
    .page-privacy-policy__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically on mobile */
        gap: 15px !important;
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}