/* style/privacy-policy.css */

/* General Styles for the Privacy Policy Page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background-color: #0A2463; /* Main Brand Color */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 10%, transparent 70%); /* Subtle gold accent */
    transform: rotate(45deg);
    opacity: 0.3;
    z-index: 0;
}

.page-privacy-policy__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Accent color for title */
    position: relative;
    z-index: 1;
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Styling */
.page-privacy-policy__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-privacy-policy__section--alt {
    background-color: #eef2f7; /* Lighter background for contrast */
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #0A2463; /* Main Brand Color */
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700; /* Accent underline */
    padding-bottom: 10px;
    display: inline-block;
}

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

.page-privacy-policy__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-privacy-policy__list li {
    margin-bottom: 8px;
}

.page-privacy-policy .highlight {
    color: #0A2463;
    font-weight: bold;
}

/* Image Styling */
.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.page-privacy-policy__cta-section {
    background-color: #0A2463; /* Main Brand Color */
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
    margin-top: 40px;
}

.page-privacy-policy__cta-section .page-privacy-policy__heading {
    color: #FFD700;
    border-bottom-color: #ffffff;
}

.page-privacy-policy__button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for button */
    color: #0A2463; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 25px;
}

.page-privacy-policy__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2em;
    }

    .page-privacy-policy__subtitle {
        font-size: 1em;
    }

    .page-privacy-policy__heading {
        font-size: 1.6em;
    }

    .page-privacy-policy__section {
        padding: 40px 0;
    }

    .page-privacy-policy__list {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 1.8em;
    }

    .page-privacy-policy__heading {
        font-size: 1.4em;
    }

    .page-privacy-policy__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}