/* style/gdpr.css */

/* Variables for colors */
:root {
    --page-gdpr-primary-color: #003366; /* Navy Blue */
    --page-gdpr-secondary-color: #FFD700; /* Gold */
    --page-gdpr-text-light: #FFFFFF;
    --page-gdpr-text-dark: #333333;
    --page-gdpr-background-light: #F8F8F8;
    --page-gdpr-border-color: #E0E0E0;
}

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

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

/* Hero Section */
.page-gdpr-hero {
    background: var(--page-gdpr-primary-color); /* Dark blue background */
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #004d99 50%, var(--page-gdpr-secondary-color) 100%); /* Gradient with primary and secondary */
    opacity: 0.8;
    z-index: 0;
}

.page-gdpr-hero > * {
    position: relative;
    z-index: 1;
}

.page-gdpr-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--page-gdpr-secondary-color); /* Gold title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-gdpr-text-light);
}

.page-gdpr-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-gdpr-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-gdpr-btn-primary {
    background-color: var(--page-gdpr-secondary-color); /* Gold button */
    color: var(--page-gdpr-primary-color); /* Dark blue text on gold */
}

.page-gdpr-btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr-btn-secondary:hover {
    background-color: var(--page-gdpr-secondary-color); /* Gold background on hover */
    color: var(--page-gdpr-primary-color); /* Dark blue text on gold */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr-hero-image {
    max-width: 250px;
    height: auto;
    margin-top: 40px;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

/* General Section Styles */
.page-gdpr-section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr-section:nth-of-type(even) {
    background-color: #f0f4f8; /* Light gray for alternating sections */
}

.page-gdpr-heading {
    font-size: 2.5em;
    color: var(--page-gdpr-primary-color); /* Dark blue heading */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr-heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-gdpr-secondary-color); /* Gold underline */
    border-radius: 2px;
}

.page-gdpr-section p {
    font-size: 1.1em;
    max-width: 900px;
    margin: 20px auto;
    color: #555555;
}

.page-gdpr-image-inline {
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Principles Grid */
.page-gdpr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-gdpr-grid-item {
    background-color: var(--page-gdpr-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-gdpr-secondary-color); /* Gold top border */
}

.page-gdpr-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr-grid-item h3 {
    color: var(--page-gdpr-primary-color); /* Dark blue heading */
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr-grid-item p {
    font-size: 1em;
    color: #666666;
    margin: 0;
}

/* Rights Section */
.page-gdpr-rights ul {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-gdpr-rights ul li {
    background-color: var(--page-gdpr-text-light);
    padding: 15px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--page-gdpr-secondary-color); /* Gold left border */
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444444;
}

.page-gdpr-rights ul li strong {
    color: var(--page-gdpr-primary-color); /* Dark blue for strong text */
}

/* Contact Section */
.page-gdpr-contact p {
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr-title {
        font-size: 2.8em;
    }
    .page-gdpr-heading {
        font-size: 2em;
    }
    .page-gdpr-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero {
        padding: 60px 0;
    }
    .page-gdpr-title {
        font-size: 2.2em;
    }
    .page-gdpr-subtitle {
        font-size: 1.1em;
    }
    .page-gdpr-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr-section {
        padding: 40px 0;
    }
    .page-gdpr-heading {
        font-size: 1.8em;
    }
    .page-gdpr-grid-item h3 {
        font-size: 1.3em;
    }
    .page-gdpr-rights ul li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 1.8em;
    }
    .page-gdpr-subtitle {
        font-size: 1em;
    }
    .page-gdpr-hero-image {
        max-width: 200px;
    }
    .page-gdpr-heading {
        font-size: 1.5em;
    }
    .page-gdpr-grid {
        grid-template-columns: 1fr;
    }
}