/* style/privacy-policy.css */

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for body text on dark background */
    background-color: #1A1A1A; /* Dark background */
    line-height: 1.6;
}

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

.page-privacy-policy__hero {
    background-color: #1A1A1A; /* Dark background */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
    z-index: 0;
}

.page-privacy-policy__hero > .page-privacy-policy__container {
    position: relative;
    z-index: 1;
}

.page-privacy-policy__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__subtitle {
    font-size: 1.4em;
    color: #CCCCCC; /* Lighter grey for subtitle */
    margin-bottom: 40px;
}

.page-privacy-policy__hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out;
}

.page-privacy-policy__hero-image:hover {
    transform: translateY(-5px);
}

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid #333333; /* Darker border for separation */
}

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

.page-privacy-policy__section--alt {
    background-color: #222222; /* Slightly lighter dark background for contrast */
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-privacy-policy p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-privacy-policy ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-privacy-policy ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: #FFF2CC; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-privacy-policy__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-privacy-policy__content-grid {
        grid-template-columns: 1fr 250px; /* Text on left, icon on right */
    }
    .page-privacy-policy__content-grid:nth-of-type(odd) {
        grid-template-columns: 250px 1fr; /* Icon on left, text on right for alternating sections */
    }
}

.page-privacy-policy__section-icon {
    max-width: 250px;
    width: 100%;
    height: auto;
    justify-self: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.page-privacy-policy__section-icon:hover {
    opacity: 1;
}

.page-privacy-policy__section--cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A, #000000); /* Darker gradient for CTA */
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__cta-content {
    position: relative;
    z-index: 1;
}

.page-privacy-policy__section--cta .page-privacy-policy__section-title {
    color: #FFD700;
    margin-bottom: 25px;
}

.page-privacy-policy__section--cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-privacy-policy__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    margin: 10px;
    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);
}

.page-privacy-policy__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-privacy-policy__btn--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-privacy-policy__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A1A1A; /* Dark text on gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-icon--cta {
    margin-top: 40px;
    max-width: 150px;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__title {
        font-size: 3em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 767px) {
    .page-privacy-policy__hero {
        padding: 60px 0 30px;
    }
    .page-privacy-policy__title {
        font-size: 2.5em;
    }
    .page-privacy-policy__subtitle {
        font-size: 1.2em;
    }
    .page-privacy-policy__section {
        padding: 40px 0;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__content-grid {
        grid-template-columns: 1fr;
    }
    .page-privacy-policy__content-grid:nth-of-type(odd) {
        grid-template-columns: 1fr;
    }
    .page-privacy-policy__section-icon {
        margin-bottom: 20px;
    }
    .page-privacy-policy__btn {
        width: calc(100% - 20px);
        margin: 10px 0;
    }
}