/* style/privacy-policy.css */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A2463 0%, #204085 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-privacy-policy__hero .page-privacy-policy__container {
    position: relative;
    z-index: 1;
}

.page-privacy-policy__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    font-weight: bold;
}

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

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.page-privacy-policy__section--alt {
    background-color: #f1f1f1;
}

.page-privacy-policy__heading {
    font-size: 2.2em;
    color: #0A2463; /* Main dark blue */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-privacy-policy__section ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-privacy-policy__section ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
}

.page-privacy-policy__link {
    color: #0A2463; /* Main dark blue */
    text-decoration: underline;
    font-weight: bold;
}

.page-privacy-policy__link:hover {
    color: #FFD700; /* Gold accent */
    text-decoration: none;
}

.page-privacy-policy__image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-privacy-policy__image:hover {
    transform: translateY(-5px);
}

.page-privacy-policy__image--left {
    float: left;
    margin-right: 30px;
}

.page-privacy-policy__image--right {
    float: right;
    margin-left: 30px;
}

.page-privacy-policy__section::after {
    content: '';
    display: table;
    clear: both;
}

/* Call to Action Banner */
.page-privacy-policy__cta-banner {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%); /* Gold to Orange gradient */
    padding: 60px 0;
    text-align: center;
    color: #0A2463; /* Dark blue text for contrast */
    position: relative;
    overflow: hidden;
    border-top: 5px solid #0A2463;
}

.page-privacy-policy__cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:gold_texture,abstract,light]') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.page-privacy-policy__cta-content {
    position: relative;
    z-index: 1;
}

.page-privacy-policy__cta-title {
    font-size: 2.8em;
    color: #0A2463; /* Main dark blue */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-privacy-policy__cta-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #0A2463; /* Dark blue button */
    color: #FFD700; /* Gold text */
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #1a3a7c; /* Slightly lighter blue on hover */
    color: #ffffff; /* White text on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2.5em;
    }
    .page-privacy-policy__subtitle,
    .page-privacy-policy__section p,
    .page-privacy-policy__section ul li {
        font-size: 1em;
    }
    .page-privacy-policy__heading {
        font-size: 1.8em;
    }
    .page-privacy-policy__image--left,
    .page-privacy-policy__image--right {
        float: none;
        margin: 20px auto;
        width: 90%;
    }
    .page-privacy-policy__cta-title {
        font-size: 2em;
    }
    .page-privacy-policy__cta-description {
        font-size: 1.1em;
    }
    .page-privacy-policy__cta-button {
        font-size: 1.2em;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 2em;
    }
    .page-privacy-policy__subtitle {
        font-size: 0.9em;
    }
    .page-privacy-policy__heading {
        font-size: 1.5em;
    }
    .page-privacy-policy__section {
        padding: 40px 0;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-description {
        font-size: 1em;
    }
    .page-privacy-policy__cta-button {
        font-size: 1.1em;
        padding: 10px 25px;
    }
}