/* style/gdpr.css */

/* Variables for color scheme */
:root {
    --page-gdpr-primary-color: #0A2463;
    --page-gdpr-secondary-color: #E3BA2E;
    --page-gdpr-text-dark: #222222;
    --page-gdpr-text-light: #ffffff;
    --page-gdpr-bg-light: #f8f8f8;
    --page-gdpr-bg-dark: #0A2463;
    --page-gdpr-accent-color: #F5DB9C; /* Lighter variant of secondary for emphasis */
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-gdpr-text-dark);
    background-color: var(--page-gdpr-bg-light);
}

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

.page-gdpr-hero {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
}

.page-gdpr-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.page-gdpr-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-gdpr-text-light);
}

.page-gdpr-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-gdpr-text-light);
}

.page-gdpr-highlight {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-gdpr-btn-primary {
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    border: 2px solid var(--page-gdpr-secondary-color);
}

.page-gdpr-btn-primary:hover {
    background-color: #f0c74b; /* Slightly lighter gold */
    color: var(--page-gdpr-primary-color);
}

.page-gdpr-btn-secondary {
    background-color: transparent;
    color: var(--page-gdpr-secondary-color);
    border: 2px solid var(--page-gdpr-secondary-color);
}

.page-gdpr-btn-secondary:hover {
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
}

.page-gdpr-section {
    padding: 60px 0;
}

.page-gdpr-section-title {
    font-size: 2.5em;
    color: var(--page-gdpr-primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-dark);
}

.page-gdpr-bg-alt {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-light);
}

.page-gdpr-bg-alt .page-gdpr-section-title,
.page-gdpr-bg-alt .page-gdpr-text,
.page-gdpr-bg-alt .page-gdpr-item-title {
    color: var(--page-gdpr-text-light);
}

.page-gdpr-bg-alt .page-gdpr-highlight {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr-grid-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr-grid-item .page-gdpr-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-gdpr-item-title {
    font-size: 1.5em;
    color: var(--page-gdpr-text-light);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gdpr-list li {
    background-color: var(--page-gdpr-bg-light);
    border-left: 5px solid var(--page-gdpr-secondary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
}

.page-gdpr-list li strong {
    color: var(--page-gdpr-primary-color);
}

.page-gdpr-cta-section {
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-gdpr-cta-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gdpr-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-gdpr-cta-title {
    font-size: 2.8em;
    color: var(--page-gdpr-primary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr-cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr-cta-text .page-gdpr-text-link {
    color: var(--page-gdpr-primary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-gdpr-cta-text .page-gdpr-text-link:hover {
    color: #000000; /* Darker on hover */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr-hero {
        flex-direction: column;
        text-align: center;
        padding-bottom: 40px;
    }

    .page-gdpr-hero .page-gdpr-container {
        max-width: 100%;
    }

    .page-gdpr-hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 200px;
        margin-top: 30px;
    }

    .page-gdpr-title {
        font-size: 2.5em;
    }

    .page-gdpr-subtitle {
        font-size: 1.1em;
    }

    .page-gdpr-section-title {
        font-size: 2em;
    }

    .page-gdpr-cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero {
        padding: 60px 0;
    }

    .page-gdpr-title {
        font-size: 2em;
    }

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

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

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

    .page-gdpr-grid-item {
        padding: 20px;
    }

    .page-gdpr-item-title {
        font-size: 1.3em;
    }

    .page-gdpr-list li {
        font-size: 0.95em;
        padding: 12px 15px;
    }

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

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

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 1.8em;
    }

    .page-gdpr-subtitle {
        font-size: 0.9em;
    }

    .page-gdpr-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

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

    .page-gdpr-text {
        font-size: 0.95em;
    }

    .page-gdpr-grid {
        gap: 20px;
    }

    .page-gdpr-grid-item {
        padding: 15px;
    }

    .page-gdpr-icon {
        width: 50px;
        height: 50px;
    }

    .page-gdpr-item-title {
        font-size: 1.2em;
    }

    .page-gdpr-list li {
        font-size: 0.9em;
    }

    .page-gdpr-cta-title {
        font-size: 1.6em;
    }

    .page-gdpr-cta-text {
        font-size: 0.95em;
    }
}