/* style/gdpr.css */

/* Base styles for GDPR page content */
.page-gdpr {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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: #0A2463; /* Primary color */
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #E0B94A; /* Auxiliary color for emphasis */
    font-weight: 700;
}

.page-gdpr__brand {
    color: #E0B94A;
}

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

.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;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__heading {
    font-size: 2em;
    color: #0A2463; /* Primary color for headings */
    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: #E0B94A; /* Auxiliary color */
    border-radius: 2px;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__introduction .page-gdpr__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.page-gdpr__introduction .page-gdpr__paragraph {
    flex: 1;
    min-width: 300px;
}

.page-gdpr__image--right {
    flex: 0 0 400px;
    max-width: 400px;
    margin: 0;
}

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

.page-gdpr__card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px 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-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #0A2463; /* Primary color for icons */
}

.page-gdpr__card-title {
    font-size: 1.4em;
    color: #0A2463; /* Primary color */
    margin-bottom: 15px;
}

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

.page-gdpr__paragraph--note {
    text-align: center;
    font-style: italic;
    margin-top: 30px;
    color: #666;
}

.page-gdpr__contact {
    background-color: #F0F5F9; /* Light background for contact section */
    text-align: center;
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #444;
}

.page-gdpr__contact-link {
    color: #0A2463; /* Primary color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: #E0B94A; /* Auxiliary color on hover */
    text-decoration: underline;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #E0B94A; /* Auxiliary color for buttons */
    color: #0A2463; /* Primary color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__button:hover {
    background-color: #FFD700; /* Slightly brighter gold on hover */
    color: #051A4D; /* Darker blue on hover */
    transform: translateY(-2px);
}

.page-gdpr__inline-link {
    color: #0A2463;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
    color: #E0B94A;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__title {
        font-size: 2.2em;
    }
    .page-gdpr__subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__introduction .page-gdpr__container {
        flex-direction: column;
    }
    .page-gdpr__image--right {
        max-width: 100%;
        flex: none;
    }
    .page-gdpr__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 40px 15px;
    }
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__heading {
        font-size: 1.5em;
    }
    .page-gdpr__paragraph, .page-gdpr__list li, .page-gdpr__card-text {
        font-size: 0.95em;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .page-gdpr__container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.5em;
    }
    .page-gdpr__hero-image {
        max-width: 200px;
    }
    .page-gdpr__heading {
        font-size: 1.3em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card {
        padding: 20px;
    }
}