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

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

.page-gdpr__hero {
    background-color: #007bff; /* Main color */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    background-image: url('[GALLERY:hero:gdpr_banner,data_protection,cyber_security]');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 123, 255, 0.7); /* Overlay for readability */
    z-index: 1;
}

.page-gdpr__hero-title,
.page-gdpr__hero-subtitle {
    position: relative;
    z-index: 2;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffc107; /* Auxiliary color for emphasis */
}

.page-gdpr__hero-subtitle {
    font-size: 1.5em;
    opacity: 0.9;
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #007bff; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-gdpr__introduction p,
.page-gdpr__rights p,
.page-gdpr__cookies p,
.page-gdpr__contact p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

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

.page-gdpr__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #007bff; /* Main color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card p {
    font-size: 1em;
    color: #555;
    text-align: justify;
}

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

.page-gdpr__list li {
    background-color: #ffffff;
    border-left: 5px solid #ffc107; /* Auxiliary color */
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
    font-size: 1.1em;
    color: #333;
}

.page-gdpr__list li strong {
    color: #007bff; /* Main color */
}

.page-gdpr__link {
    color: #007bff; /* Main color */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #0056b3; /* Darker main color for hover */
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    margin: 10px 10px 10px 0;
}

.page-gdpr__button--primary {
    background-color: #007bff; /* Main color */
    color: #ffffff;
    border: 2px solid #007bff;
}

.page-gdpr__button--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.page-gdpr__button--secondary {
    background-color: #ffc107; /* Auxiliary color */
    color: #333;
    border: 2px solid #ffc107;
}

.page-gdpr__button--secondary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.page-gdpr__contact .page-gdpr__cta-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #007bff;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__contact .page-gdpr__button--secondary {
    display: block;
    margin: 20px auto;
    max-width: 300px;
}

.page-gdpr__footer-info {
    background-color: #343a40;
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

.page-gdpr__copyright {
    margin: 0;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }

    .page-gdpr__hero-subtitle {
        font-size: 1.2em;
    }

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

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

    .page-gdpr__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }

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

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

    .page-gdpr__section {
        padding: 40px 0;
    }

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

    .page-gdpr__card {
        padding: 20px;
    }

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

    .page-gdpr__list li {
        padding: 10px 15px;
        font-size: 1em;
    }
}