/* style/privacy-policy.css */

/* Global styles for the privacy policy page */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark gray for readability on light backgrounds */
    background-color: #f8f8f8; /* Light background */
}

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

/* Hero Section */
.page-privacy-policy-hero {
    background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-privacy-policy-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for emphasis */
}

.page-privacy-policy-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

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

.page-privacy-policy-content-block {
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy-heading {
    font-size: 2em;
    color: #003366; /* Deep blue for main headings */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFCC00; /* Gold underline */
    padding-bottom: 10px;
}

.page-privacy-policy-subheading {
    font-size: 1.5em;
    color: #003366;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy-content-block p {
    margin-bottom: 15px;
    color: #555555;
}

.page-privacy-policy-content-block ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555555;
}

.page-privacy-policy-content-block ul li {
    margin-bottom: 8px;
}

.page-privacy-policy-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* No filter property allowed */
}

/* Call to Action Section */
.page-privacy-policy-cta-section {
    text-align: center;
    padding: 50px 0;
    background-color: #003366; /* Deep blue background */
    border-radius: 8px;
    margin-top: 40px;
}

.page-privacy-policy-cta-text {
    font-size: 1.5em;
    color: #ffffff;
    margin-bottom: 30px;
}

.page-privacy-policy-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-privacy-policy-btn {
    display: inline-block;
    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;
    white-space: nowrap; /* Prevent text wrapping inside buttons */
}

.page-privacy-policy-btn-primary {
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Deep blue text */
    border: 2px solid #FFCC00;
}

.page-privacy-policy-btn-primary:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-privacy-policy-btn-secondary {
    background-color: transparent;
    color: #FFCC00; /* Gold text */
    border: 2px solid #FFCC00;
}

.page-privacy-policy-btn-secondary:hover {
    background-color: #FFCC00; /* Gold background on hover */
    color: #003366; /* Deep blue text on hover */
    transform: translateY(-3px);
}

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

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

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

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

    .page-privacy-policy-content-block {
        padding: 25px;
    }

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

    .page-privacy-policy-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-privacy-policy-btn {
        width: 80%;
        max-width: 300px;
    }
}

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

    .page-privacy-policy-hero {
        padding: 50px 0;
    }

    .page-privacy-policy-content-section {
        padding: 30px 0;
    }

    .page-privacy-policy-content-block {
        padding: 20px;
    }

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

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

    .page-privacy-policy-cta-text {
        font-size: 1em;
    }
}