/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Dark grey for general text on light background */
    background-color: #f8f9fa; /* Light background for the page */
}

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #0056B3, #003a73); /* Dark blue gradient */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,security,data_pattern]'); /* Subtle background pattern */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.page-gdpr__title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
}

.page-gdpr__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-gdpr__image-wrapper {
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #0056B3; /* Dark blue for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-gdpr__section strong {
    color: #0056B3;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__list li {
    background-color: #fff;
    border-left: 5px solid #FFD700; /* Gold accent for list items */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444;
}

.page-gdpr__list li strong {
    color: #0056B3;
}

.page-gdpr__content-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action */
.page-gdpr__cta {
    background-color: #0056B3; /* Dark blue background for CTA */
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.page-gdpr__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0056B3; /* Dark blue text on gold button */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    color: #003a73;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__subtitle {
        font-size: 1.2em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__section p, .page-gdpr__list li {
        font-size: 1em;
    }
    .page-gdpr__cta {
        padding: 30px 20px;
    }
    .page-gdpr__cta p {
        font-size: 1.1em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__hero, .page-gdpr__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-image, .page-gdpr__content-image {
        width: 95%;
    }
}