/* style/gdpr.css */
.page-gdpr {
    color: #ffffff; /* Text color for dark body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000000; /* Main background color */
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 0;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark overlay for text readability */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    margin: 20px;
}

.page-gdpr__main-title {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight color for title */
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 0 10px;
}

.page-gdpr__cta-button--register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-gdpr__cta-button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-gdpr__cta-button--login {
    background-color: #FCBC45;
    color: #000000;
}

.page-gdpr__cta-button--login:hover {
    background-color: #e0a538;
    transform: translateY(-2px);
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #FCBC45;
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #ffffff;
}

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

.page-gdpr__card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-gdpr__card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FCBC45;
}

.page-gdpr__card-text {
    font-size: 1em;
    line-height: 1.5;
    color: #e0e0e0;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-gdpr__card-link {
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
    border: 1px solid #FFFFFF;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.95em;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__card-link:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-gdpr__rights-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 5px solid #FCBC45;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__rights-title {
    font-size: 1.4em;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-gdpr__rights-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #e0e0e0;
}

.page-gdpr__contact-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-gdpr__contact-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #ffffff;
}

.page-gdpr__cta-button--contact {
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-gdpr__cta-button--contact:hover {
    background-color: #e0a538;
    transform: translateY(-2px);
}

.page-gdpr__cookie-info-section {
    background-color: rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 80px 20px;
}

.page-gdpr__cta-button--cookies {
    background-color: #FFFFFF;
    color: #000000;
    padding: 15px 35px;
    font-size: 1.1em;
    margin-top: 30px;
}

.page-gdpr__cta-button--cookies:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-gdpr__footer-cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(252,188,69,0.2));
}

.page-gdpr__footer-cta-buttons {
    margin-top: 40px;
}

.page-gdpr__cta-button--register-large {
    background-color: #FFFFFF;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-gdpr__cta-button--register-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-gdpr__cta-button--login-large {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-gdpr__cta-button--login-large:hover {
    background-color: #e0a538;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__hero-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: 2.2em;
    }
    .page-gdpr__description {
        font-size: 1em;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 10px 5px;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card-image {
        height: 250px;
    }
    .page-gdpr__rights-list {
        grid-template-columns: 1fr;
    }
    .page-gdpr__cta-button--register-large,
    .page-gdpr__cta-button--login-large {
        padding: 15px 30px;
        font-size: 1.1em;
        margin: 10px 0;
    }
    .page-gdpr__hero-section {
        min-height: 500px;
    }
    .page-gdpr__hero-image,
    .page-gdpr__card-image,
    .page-gdpr__grid img,
    .page-gdpr__rights-section img {
        max-width: 100%;
        height: auto; /* Ensure images don't overflow on mobile */
    }
    .page-gdpr__hero-content {
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-content {
        padding: 20px;
    }
    .page-gdpr__cta-button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-gdpr__cta-button--register-large,
    .page-gdpr__cta-button--login-large {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-gdpr__container {
        padding: 40px 15px;
    }
    .page-gdpr__card-image {
        height: 200px;
    }
}