/* 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; /* Dark text for readability on light backgrounds */
    background-color: #f9f9f9; /* Light background for the page */
}

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #007bff, #ffc107); /* Blue to Amber gradient */
    color: #ffffff; /* White text for contrast */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-privacy-policy__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff; /* White title for contrast */
    font-weight: bold;
    line-height: 1.2;
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

/* Content Sections */
.page-privacy-policy__section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for sections */
    border-bottom: 1px solid #eee;
}

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

.page-privacy-policy__section--alt {
    background-color: #f0f8ff; /* Light blue background for alternate sections */
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #007bff; /* Main brand blue for headings */
    margin-bottom: 25px;
    border-bottom: 3px solid #ffc107; /* Auxiliary color for underline */
    padding-bottom: 10px;
    display: inline-block;
}

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

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

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

.page-privacy-policy__list li strong {
    color: #007bff; /* Highlight strong text with main color */
}

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

.page-privacy-policy__section--contact {
    text-align: center;
    background-color: #e6f2ff; /* Lighter blue for contact section */
    padding-bottom: 80px;
}

.page-privacy-policy__link {
    color: #007bff; /* Main blue for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #ffc107; /* Auxiliary color on hover */
    text-decoration: underline;
}

/* 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: 20px;
    }
}

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

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

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

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

    .page-privacy-policy__list {
        margin-left: 15px;
    }
}