/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    background: linear-gradient(135deg, #0A2463, #3C5A8F); /* Dark blue to slightly lighter blue */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #E3B23C; /* Accent gold for title */
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Sections */
.page-gdpr__content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
    font-size: 2em;
    color: #0A2463; /* Main brand color */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E3B23C; /* Accent gold underline */
    border-radius: 2px;
}

.page-gdpr__content-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr__content-section ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-gdpr__content-section ul li {
    margin-bottom: 10px;
    color: #555;
}

.page-gdpr__content-section ul li strong {
    color: #0A2463;
}

/* Keywords */
.page-gdpr__keyword {
    font-weight: bold;
    color: #0A2463; /* Dark blue for emphasis */
}

.page-gdpr__hero-description .page-gdpr__keyword {
    color: #E3B23C; /* Gold for keywords in hero section */
}

/* Image Styling */
.page-gdpr__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

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

/* Buttons */
.page-gdpr__button-group {
    text-align: center;
    margin-top: 40px;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-gdpr__btn--primary {
    background-color: #0A2463; /* Main brand color */
    color: #FFFFFF;
}

.page-gdpr__btn--primary:hover {
    background-color: #071A4A; /* Slightly darker */
    transform: translateY(-3px);
}

.page-gdpr__btn--secondary {
    background-color: #E3B23C; /* Accent gold color */
    color: #0A2463; /* Dark blue text for contrast */
}

.page-gdpr__btn--secondary:hover {
    background-color: #C99E30; /* Slightly darker */
    transform: translateY(-3px);
}

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

    .page-gdpr__hero-description {
        font-size: 1em;
    }

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

    .page-gdpr__content-section p,
    .page-gdpr__content-section ul li {
        font-size: 1em;
    }

    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
        display: block;
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 60px 0;
    }

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

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

    .page-gdpr__content-section {
        padding: 40px 0;
    }

    .page-gdpr__container {
        padding: 15px;
    }
}