:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --card-bg-color: #17191F;
    --background-color: #0D0E12;
    --text-main-color: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange-color: #D96800;
}

.page-gdpr {
    background-color: var(--background-color); /* #0D0E12 */
    color: var(--text-main-color); /* #FFF3E6 */
    font-family: Arial, sans-serif; /* Roboto-like */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for first section, body handles header offset */
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space below content */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px; /* Adjust as needed */
    margin-bottom: 20px; /* Space between image and text */
}

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Max 2.8em to avoid occupying half screen on mobile */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-main-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-main-color);
    opacity: 0.9;
}

/* Buttons */
.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: var(--button-gradient); /* linear-gradient(180deg, #FFA53A 0%, #D96800 100%) */
    color: var(--text-main-color);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-gdpr__button--secondary {
    background: transparent;
    border: 2px solid var(--border-color); /* #A84F0C */
    box-shadow: none;
}

.page-gdpr__button--secondary:hover {
    background-color: rgba(255, 165, 58, 0.1); /* Slight hover effect */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.page-gdpr__section-title {
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main-color);
    background: linear-gradient(to right, var(--glow-color), var(--primary-color)); /* Glow to Main Color */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* General Text */
.page-gdpr__text {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Principles Section Grid */
.page-gdpr__principles-section {
    padding: 60px 0;
    background-color: var(--card-bg-color); /* #17191F */
    margin-top: 40px;
}

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

.page-gdpr__card {
    background-color: var(--background-color); /* #0D0E12 */
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color); /* #A84F0C */
}

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

.page-gdpr__card-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too small */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Min size constraint */
    min-height: 200px; /* Min size constraint */
}

.page-gdpr__card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-main-color);
}

.page-gdpr__card-text {
    font-size: 0.95em;
    opacity: 0.8;
}

/* Rights Section */
.page-gdpr__rights-section {
    padding: 60px 0;
}

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

.page-gdpr__list-item {
    background-color: var(--card-bg-color); /* #17191F */
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid var(--deep-orange-color); /* #D96800 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-gdpr__list-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--glow-color); /* #FFB04D */
}

.page-gdpr__list-description {
    font-size: 1em;
    opacity: 0.9;
}

/* Contact Section */
.page-gdpr__contact-section {
    padding: 60px 0 80px;
    background-color: var(--card-bg-color); /* #17191F */
    text-align: center;
}

.page-gdpr__contact-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-image {
        max-height: 500px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-image {
        max-height: 400px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5em, 6vw, 2.2em);
    }
    .page-gdpr__description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.95em;
    }
    .page-gdpr__card-image {
        max-width: 100%;
        min-width: 200px; /* Enforce min size */
        height: auto;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__button {
        max-width: 100%;
    }
    /* Mobile overflow prevention */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__container {
        padding: 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.3em, 7vw, 2em);
    }
    .page-gdpr__section-title {
        font-size: 1.4em;
    }
    .page-gdpr__card-title {
        font-size: 1.2em;
    }
    .page-gdpr__list-title {
        font-size: 1.1em;
    }
}