/* style/gdpr.css */

.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;
}

.page-gdpr__hero {
    background-color: #0A2647; /* Main color */
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #FFC107; /* Accent color */
    font-weight: bold;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-image {
    max-width: 300px;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section {
    padding: 40px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #f0f4f8; /* Light background for contrast */
}

.page-gdpr__heading {
    font-size: 2em;
    color: #0A2647; /* Main color */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

.page-gdpr__introduction p, 
.page-gdpr__protection p,
.page-gdpr__contact p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr__introduction p strong,
.page-gdpr__protection p strong {
    color: #0A2647;
}

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

.page-gdpr__principle-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.page-gdpr__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-gdpr__card-title {
    font-size: 1.3em;
    color: #0A2647; /* Main color */
    margin-bottom: 10px;
}

.page-gdpr__principle-card p {
    font-size: 0.95em;
    color: #555;
}

.page-gdpr__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #444;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-gdpr__list li strong {
    color: #0A2647;
}

.page-gdpr__image-fullwidth {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image-small {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

.page-gdpr__link {
    color: #0A2647; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #FFC107; /* Accent color on hover */
    text-decoration: underline;
}

.page-gdpr__cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #0A2647; /* Main color */
    color: #ffffff;
    border-radius: 8px;
}

.page-gdpr__cta p {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFC107; /* Accent color */
    color: #0A2647; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button:hover {
    background-color: #e6a000; /* Darker accent on hover */
    transform: translateY(-2px);
}

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

    .page-gdpr__subtitle {
        font-size: 1em;
    }

    .page-gdpr__heading {
        font-size: 1.8em;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__list {
        padding-left: 20px;
    }

    .page-gdpr__cta p {
        font-size: 1.1em;
    }

    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}