/* style/privacy-policy.css */

/* Global styles for the page content */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
    padding-bottom: 50px;
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background-color: #000080; /* Dark blue background */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.page-privacy-policy__hero-subtitle {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto;
    color: #e0e0e0;
}

.page-privacy-policy__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
    transform: scale(1.1);
}

/* General Section Styling */
.page-privacy-policy__section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 8px;
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #000080; /* Dark blue for section titles */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

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

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

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

.page-privacy-policy__list li strong {
    color: #000080;
}

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

.page-privacy-policy__image--inline {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section Specifics */
.page-privacy-policy__contact p {
    text-align: center;
}

.page-privacy-policy__contact-link {
    color: #000080;
    text-decoration: underline;
    font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
    color: #FFD700;
}

/* Call to Action Button */
.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000080; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__hero {
        padding: 60px 0;
    }

    .page-privacy-policy__hero-title {
        font-size: 2.5em;
    }

    .page-privacy-policy__hero-subtitle {
        font-size: 1.1em;
    }

    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__section p,
    .page-privacy-policy__list li {
        font-size: 1em;
    }

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

    .page-privacy-policy__image--inline {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero {
        padding: 40px 0;
    }

    .page-privacy-policy__hero-title {
        font-size: 2em;
    }

    .page-privacy-policy__hero-subtitle {
        font-size: 0.95em;
    }

    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }

    .page-privacy-policy__section p,
    .page-privacy-policy__list li {
        font-size: 0.95em;
    }

    .page-privacy-policy__image--inline {
        max-width: 95%;
    }
}