/* style/gdpr.css */

/* General Page Styling */
.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 {
    background: linear-gradient(135deg, #0056B3, #FFC107);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-gdpr-hero > .page-gdpr-container {
    position: relative;
    z-index: 2;
}

.page-gdpr-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-gdpr-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-gdpr-hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-gdpr-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr-heading {
    font-size: 2.5em;
    color: #0056B3;
    margin-bottom: 30px;
    text-align: center;
    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: #FFC107;
    border-radius: 2px;
}

.page-gdpr-paragraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333;
}

.page-gdpr-link {
    color: #0056B3;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-link:hover {
    text-decoration: underline;
    color: #003f8c;
}

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

.page-gdpr-card {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-gdpr-card-title {
    font-size: 1.5em;
    color: #0056B3;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr-card-text {
    font-size: 1em;
    color: #555;
}

.page-gdpr-image-small {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Rights Section (List) */
.page-gdpr-rights .page-gdpr-list {
    list-style: disc;
    margin-left: 25px;
    margin-top: 20px;
    font-size: 1.1em;
    color: #333;
}

.page-gdpr-rights .page-gdpr-list li {
    margin-bottom: 10px;
}

.page-gdpr-rights .page-gdpr-list li strong {
    color: #0056B3;
}

.page-gdpr-image-full {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.page-gdpr-contact .page-gdpr-paragraph strong {
    color: #0056B3;
}

/* Call to Action Section */
.page-gdpr-cta {
    background-color: #FFC107;
    padding: 60px 0;
    text-align: center;
    color: #333;
}

.page-gdpr-cta .page-gdpr-heading {
    color: #0056B3;
    font-size: 2.2em;
}

.page-gdpr-cta .page-gdpr-heading::after {
    background-color: #0056B3;
}

.page-gdpr-cta .page-gdpr-paragraph {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-gdpr-button {
    display: inline-block;
    background-color: #0056B3;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr-button:hover {
    background-color: #003f8c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr-title {
        font-size: 2.5em;
    }
    .page-gdpr-subtitle {
        font-size: 1.1em;
    }
    .page-gdpr-heading {
        font-size: 2em;
    }
    .page-gdpr-principles .page-gdpr-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr-card {
        padding: 20px;
    }
    .page-gdpr-card-title {
        font-size: 1.3em;
    }
    .page-gdpr-list {
        margin-left: 15px;
        font-size: 1em;
    }
    .page-gdpr-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 2em;
    }
    .page-gdpr-subtitle {
        font-size: 1em;
    }
    .page-gdpr-heading {
        font-size: 1.8em;
    }
    .page-gdpr-paragraph {
        font-size: 0.95em;
    }
    .page-gdpr-list {
        font-size: 0.95em;
    }
}