/* style/gdpr.css */
.page-gdpr {
    color: #ffffff; /* Light text for dark body background */
    padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
    background-color: #1A202C;
}

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

.page-gdpr__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Ensure hero section has a decent height */
}

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    padding: 40px;
    border-radius: 10px;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-gdpr__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.page-gdpr__principles-section {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-gdpr__card {
    background: rgba(255, 255, 255, 0.08); /* Light transparent background for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-gdpr__card-image {
    width: 250px; /* Ensure images are not too small */
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-gdpr__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gdpr__card-text {
    font-size: 1em;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-gdpr__rights-section {
    padding: 60px 0;
    background-color: #1A202C;
}

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

.page-gdpr__list-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 5px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.5;
    color: #f0f0f0;
    border-radius: 5px;
}

.page-gdpr__contact-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
}

.page-gdpr__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #e0b000;
    text-decoration: underline;
}

.page-gdpr__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #1A202C;
}

.page-gdpr__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.page-gdpr__button--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-gdpr__button--primary:hover {
    background-color: #e0b000;
    transform: translateY(-3px);
}

.page-gdpr__button--secondary {
    background-color: #E53E3E; /* Emphasize with red for urgency */
    color: #ffffff;
}

.page-gdpr__button--secondary:hover {
    background-color: #c53030;
    transform: translateY(-3px);
}

.page-gdpr__button--tertiary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-gdpr__button--tertiary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 3em;
    }
    .page-gdpr__section-title {
        font-size: 2.2em;
    }
    .page-gdpr__cta-title {
        font-size: 2.5em;
    }
    .page-gdpr__card-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        min-height: 450px;
        padding: 60px 0;
    }
    .page-gdpr__hero-content {
        padding: 30px;
    }
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-intro {
        font-size: 1em;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__card-title {
        font-size: 1.4em;
    }
    .page-gdpr__card-image {
        width: 200px;
        height: 200px;
    }
    .page-gdpr__list-item {
        font-size: 1em;
        padding: 12px 15px;
    }
    .page-gdpr__cta-title {
        font-size: 2em;
    }
    .page-gdpr__cta-description {
        font-size: 1.1em;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }

    /* Mobile overflow prevention */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        min-height: 350px;
        padding: 40px 0;
    }
    .page-gdpr__hero-content {
        padding: 20px;
    }
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}