/* style/privacy-policy.css */

/* General styles for the privacy policy page content */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for general text on light background */
    background-color: #f8f8f8; /* Light background for readability */
}

/* Hero Section */
.page-privacy-policy__hero {
    background-color: #1A237E; /* Deep Blue primary color */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 20px;
    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(26, 35, 126, 0.8), rgba(255, 179, 0, 0.6)); /* Gradient overlay */
    z-index: 1;
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.page-privacy-policy__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFB300; /* Amber Gold for main title */
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0; /* Light gray for subtitle */
}

.page-privacy-policy__hero-image {
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

/* Content Section */
.page-privacy-policy__content {
    padding: 60px 0;
}

.page-privacy-policy__article {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__heading {
    font-size: 1.8em;
    color: #1A237E; /* Deep Blue for headings */
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFB300; /* Amber Gold underline */
    padding-bottom: 10px;
}

.page-privacy-policy__article p {
    margin-bottom: 15px;
    color: #444; /* Slightly darker gray for paragraph text */
}

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

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

.page-privacy-policy__article strong {
    color: #1A237E; /* Emphasize important terms with primary color */
}

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

/* Call to Action (CTA) Section */
.page-privacy-policy__cta-wrapper {
    background-color: #1A237E; /* Deep Blue background for CTA */
    color: #FFFFFF; /* White text for contrast */
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 179, 0, 0.2), rgba(26, 35, 126, 0.8)); /* Subtle gradient overlay */
    z-index: 1;
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    color: #FFB300; /* Amber Gold for CTA title */
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-privacy-policy__cta-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0; /* Light gray for CTA text */
    position: relative;
    z-index: 2;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFB300; /* Amber Gold for button background */
    color: #1A237E; /* Deep Blue text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.page-privacy-policy__cta-button:hover {
    background-color: #e5a000; /* Slightly darker amber on hover */
    transform: translateY(-3px);
}

.page-privacy-policy__cta-image {
    max-width: 400px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

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

    .page-privacy-policy__title {
        font-size: 2.2em;
    }

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

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

    .page-privacy-policy__article {
        padding: 25px;
    }

    .page-privacy-policy__heading {
        font-size: 1.5em;
        margin-top: 30px;
    }

    .page-privacy-policy__cta-wrapper {
        padding: 40px 25px;
        margin-top: 40px;
    }

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

    .page-privacy-policy__cta-text {
        font-size: 0.95em;
    }

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

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

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

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

    .page-privacy-policy__article {
        padding: 15px;
    }

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

    .page-privacy-policy__cta-wrapper {
        padding: 30px 15px;
    }

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