/* style/gdpr.css */

/* General page styling */
.page-gdpr {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A2B4C; /* Main brand color */
}

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

.page-gdpr__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-gdpr__container--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__container--center {
    text-align: center;
}

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #0D1C3A 100%); /* Darker gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Accent color for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 40px auto 0 auto;
}

/* Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold divider */
}

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

.page-gdpr__section--what-is {
    background-color: #0D1C3A; /* Slightly different dark background */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

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

/* Content blocks with images */
.page-gdpr__content-block {
    flex: 1;
    min-width: 300px;
}

.page-gdpr__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--small {
    max-width: 600px; /* Adjust for smaller images */
    margin: 30px auto;
}

/* Lists */
.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-gdpr__list-item {
    background-color: rgba(255, 215, 0, 0.05); /* Subtle background for list items */
    border-left: 4px solid #FFD700;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #E0E0E0;
    transition: transform 0.2s ease-in-out;
}

.page-gdpr__list-item:hover {
    transform: translateX(5px);
    background-color: rgba(255, 215, 0, 0.1);
}

.page-gdpr__list--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-gdpr__list--grid .page-gdpr__list-item {
    margin-bottom: 0;
}


/* Buttons */
.page-gdpr__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 30px;
}

.page-gdpr__btn--primary {
    background-color: #FFD700;
    color: #1A2B4C;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }

    .page-gdpr__section-title {
        font-size: 2em;
    }

    .page-gdpr__container--flex {
        flex-direction: column;
        gap: 30px;
    }

    .page-gdpr__container--reverse {
        flex-direction: column; /* Revert for smaller screens to maintain flow */
    }

    .page-gdpr__list--grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }

    .page-gdpr__hero-title {
        font-size: 2em;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
    }

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
    }

    .page-gdpr__text {
        font-size: 0.95em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
}