/* style/privacy-policy.css */

/* General Styling for Privacy Policy Page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for text on light background */
    background-color: #f8f8f8; /* Light background for readability */
    padding: 0;
    margin: 0;
}

.page-privacy-policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-privacy-policy-hero {
    background: linear-gradient(135deg, #0056B3, #003F80); /* Darker blue gradient for primary */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.page-privacy-policy-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Secondary color for main title */
    font-weight: bold;
}

.page-privacy-policy-intro {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    opacity: 0.9;
}

.page-privacy-policy-main-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

/* Content Sections */
.page-privacy-policy-section {
    padding: 40px 0;
    border-bottom: 1px solid #eeeeee;
}

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

.page-privacy-policy-section:nth-of-type(odd) {
    background-color: #ffffff;
}

.page-privacy-policy-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-privacy-policy-heading {
    font-size: 2.2em;
    color: #0056B3; /* Primary color for section headings */
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid #FFD700; /* Secondary color underline */
    padding-bottom: 10px;
    display: inline-block;
    width: auto;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy-subheading {
    font-size: 1.6em;
    color: #004080; /* Slightly darker primary for subheadings */
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-privacy-policy-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-privacy-policy-list li {
    margin-bottom: 10px;
    color: #444444;
}

.page-privacy-policy-list li strong {
    color: #0056B3;
}

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

/* Links */
.page-privacy-policy a {
    color: #0056B3; /* Primary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: #FFD700; /* Secondary color on hover */
    text-decoration: underline;
}

/* Contact List */
.page-privacy-policy-contact-list {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.page-privacy-policy-contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333333;
}

.page-privacy-policy-contact-list li strong {
    color: #0056B3;
}

.page-privacy-policy-contact-link {
    font-weight: bold;
}

/* Call to Action Button */
.page-privacy-policy-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-privacy-policy-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700; /* Secondary color for CTA button */
    color: #0056B3; /* Primary color for text on secondary button */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #FFD700;
}

.page-privacy-policy-cta-button:hover {
    background-color: #0056B3; /* Primary color on hover */
    color: #FFD700; /* Secondary color for text on primary button */
    border-color: #0056B3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Note */
.page-privacy-policy-footer-note {
    text-align: center;
    padding: 20px;
    background-color: #0056B3; /* Primary color for footer note background */
    color: #ffffff;
    font-size: 0.9em;
    margin-top: 30px;
}

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

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

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

    .page-privacy-policy-container {
        padding: 15px;
    }

    .page-privacy-policy-list {
        margin-left: 20px;
    }

    .page-privacy-policy-cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy-title {
        font-size: 1.6em;
    }

    .page-privacy-policy-heading {
        font-size: 1.5em;
    }

    .page-privacy-policy-subheading {
        font-size: 1.2em;
    }

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

    .page-privacy-policy p, .page-privacy-policy-list li {
        font-size: 0.95em;
    }
}