/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2C3E50; /* Dark blue for main text */
    background-color: #f8f8f8;
}

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

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #FFD700, #b39700); /* Gold gradient */
    color: #2C3E50; /* Dark blue text on gold */
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #2C3E50; /* Ensure high contrast */
}

.page-privacy-policy__hero-subtitle {
    font-size: 1.2em;
    color: #2C3E50;
}

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-privacy-policy__section--alt-bg {
    background-color: #e0e0e0;
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #2C3E50; /* Dark blue title */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-privacy-policy__section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #FFD700; /* Gold underline */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1em;
    color: #333;
}

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

.page-privacy-policy__list li {
    margin-bottom: 10px;
    color: #333;
}

.page-privacy-policy strong {
    color: #2C3E50;
}

.page-privacy-policy__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__cta-section {
    background-color: #2C3E50; /* Dark blue background */
    padding: 70px 0;
    text-align: center;
}

.page-privacy-policy__cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold title */
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #2C3E50; /* Dark blue text on gold */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:hover {
    background-color: #b39700; /* Darker gold on hover */
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-title {
        font-size: 2em;
    }
    .page-privacy-policy__hero-subtitle {
        font-size: 1em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-privacy-policy__section,
    .page-privacy-policy__cta-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero {
        padding: 50px 0;
    }
    .page-privacy-policy__hero-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy p,
    .page-privacy-policy__list li,
    .page-privacy-policy__cta-text {
        font-size: 0.9em;
    }
    .page-privacy-policy__list {
        padding-left: 20px;
    }
}