/* 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: transparent; /* Body background is handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

/* --- Hero Banner (Main Title Section) --- */
.page-privacy-policy__hero-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__main-title {
    font-size: 2.8em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__intro-description {
    font-size: 1.1em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
}

/* --- Content Area --- */
.page-privacy-policy__content-area {
    padding: 50px 0;
}

.page-privacy-policy__text-block {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for text blocks on dark body */
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: var(--primary-color); /* Gold color for main section titles */
    margin-bottom: 25px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    font-weight: 600;
}

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

.page-privacy-policy p {
    margin-bottom: 15px;
    color: #f0f0f0; /* Light text for paragraphs */
}

.page-privacy-policy ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #f0f0f0; /* Light text for lists */
}

.page-privacy-policy ul li {
    margin-bottom: 8px;
    color: #f0f0f0; /* Light text for list items */
}

.page-privacy-policy strong {
    color: var(--primary-color); /* Highlight important text with gold */
}

/* --- Images --- */
.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* --- Call to Action (CTA) Block --- */
.page-privacy-policy__cta-block {
    background-color: var(--secondary-color); /* Red background for CTA */
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-privacy-policy__cta-text {
    font-size: 1.1em;
    color: #f0f0f0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color); /* Gold button */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
    background: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
}