/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-gdpr__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate(-30deg);
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.page-gdpr__section-title {
    font-size: 2em;
    color: #8B0000; /* Dark red for titles */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFD700; /* Gold underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

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

.page-gdpr__text--small {
    font-size: 0.95em;
    margin-top: 30px;
    text-align: center;
    color: #555;
}

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

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

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

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

.page-gdpr__call-to-action {
    text-align: center;
    background-color: #FFD700;
    padding: 50px 0;
}

.page-gdpr__call-to-action .page-gdpr__section-title {
    color: #8B0000;
}

.page-gdpr__call-to-action .page-gdpr__text {
    color: #333;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__button--primary {
    background-color: #8B0000; /* Dark red button */
    color: #FFD700; /* Gold text */
    border: 2px solid #8B0000;
}

.page-gdpr__button--primary:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    color: #fff;
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.page-gdpr__button--secondary:hover {
    background-color: #8B0000;
    color: #FFD700;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.2em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__text {
        font-size: 1em;
    }
    .page-gdpr__list {
        padding-left: 20px;
    }
    .page-gdpr__list li {
        font-size: 0.95em;
    }
    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-gdpr__hero-image, .page-gdpr__image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 40px 0;
    }
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__subtitle {
        font-size: 0.9em;
    }
    .page-gdpr__section {
        padding: 30px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__text {
        font-size: 0.95em;
    }
    .page-gdpr__list {
        padding-left: 15px;
    }
    .page-gdpr__list li {
        font-size: 0.9em;
    }
    .page-gdpr__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
}