/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.page-gdpr__hero {
    background-color: #1A237E;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1.2;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-gdpr__section--alt-bg {
    background-color: #f8f8f8;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
}

.page-gdpr__highlight {
    color: #FFD700;
    font-weight: bold;
}

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

.page-gdpr__principle-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-gdpr__principle-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #1A237E; /* Assuming SVG icon or similar that can be colored */
}

.page-gdpr__principle-item h3 {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-gdpr__principle-item p {
    font-size: 1em;
    color: #555;
}

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

.page-gdpr__rights-list li,
.page-gdpr__security-list li {
    background-color: #f0f0f0;
    margin-bottom: 15px;
    padding: 18px 25px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__rights-list li strong,
.page-gdpr__security-list li strong {
    color: #1A237E;
}

.page-gdpr__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-gdpr__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-gdpr__btn--primary {
    background-color: #FFD700;
    color: #1A237E;
    border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #1A237E;
    border: 2px solid #1A237E;
    margin-left: 20px;
}

.page-gdpr__btn--secondary:hover {
    background-color: #1A237E;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-gdpr__cta-section {
    background-color: #1A237E;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-gdpr__cta-section p {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__cta-title {
        font-size: 2.2em;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@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 p,
    .page-gdpr__rights-list li,
    .page-gdpr__security-list li {
        font-size: 0.95em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero,
    .page-gdpr__section,
    .page-gdpr__cta-section {
        padding: 40px 0;
    }
}