/* style/privacy-policy.css */

/* General styling for the privacy policy page content */
.page-privacy-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1A2E47; /* Main background color */
    color: #E0E0E0; /* Light text for dark background */
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

/* Container for content sections */
.page-privacy-policy__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero section styling */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #1A2E47, #3A5C80); /* Gradient from main to a slightly lighter blue */
    padding: 60px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700; /* Gold accent */
}

.page-privacy-policy__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    font-weight: 700;
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    color: #B0B0B0; /* Slightly lighter grey for subtitle */
    max-width: 700px;
    margin: 0 auto;
}

/* Content section styling */
.page-privacy-policy__content-section {
    padding: 40px 0;
}

.page-privacy-policy__heading {
    font-size: 1.8em;
    color: #FFD700; /* Gold for section headings */
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3); /* Subtle gold underline */
    padding-bottom: 5px;
}

.page-privacy-policy p {
    margin-bottom: 1em;
}

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

.page-privacy-policy__list li {
    margin-bottom: 0.5em;
    color: #E0E0E0;
}

.page-privacy-policy__list li strong {
    color: #FFD700; /* Gold for strong text in lists */
}

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

/* Call to action styling */
.page-privacy-policy__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #2A405F; /* Slightly lighter blue background for CTA */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__call-to-action p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold text for CTA prompt */
    font-weight: 600;
}

.page-privacy-policy__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2E47; /* Dark blue text on button */
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn:hover {
    background-color: #E6C200; /* Darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive adjustments */
@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.5em;
    }
    .page-privacy-policy__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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