/* style/gdpr.css */

/* General Page Styling */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A2A3A; /* Main brand color */
    line-height: 1.6;
}

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

.page-gdpr__section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__section:nth-child(even) {
    background-color: #2A3B4C; /* Slightly lighter dark background */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color for titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr h1, .page-gdpr h2, .page-gdpr h3, .page-gdpr h4 {
    color: #FFD700;
}

.page-gdpr p {
    color: #E0E0E0;
    margin-bottom: 1em;
}

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #1A2A3A 0%, #3A4A5A 100%); /* Gradient background */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/path/to/subtle_pattern.png') repeat; /* Placeholder for subtle pattern */
    opacity: 0.1;
    z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
    position: relative;
    z-index: 1;
}

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

.page-gdpr__hero-description {
    font-size: 1.3em;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-gdpr__button--primary {
    background-color: #FFD700;
    color: #1A2A3A;
    border: 2px solid #FFD700;
}

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

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

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

/* What is GDPR Section */
.page-gdpr__what-is-gdpr .page-gdpr__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.page-gdpr__what-is-gdpr .page-gdpr__text-content {
    padding-right: 20px;
}

.page-gdpr__what-is-gdpr .page-gdpr__image-wrapper {
    text-align: center;
}

.page-gdpr__what-is-gdpr .page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* 99win Commitment Section */
.page-gdpr__99win-commitment .page-gdpr__commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__commitment-item {
    background-color: #2A3B4C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #3A4A5A;
}

.page-gdpr__commitment-item:hover {
    transform: translateY(-5px);
    background-color: #3A4A5A;
}

.page-gdpr__item-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-gdpr__commitment-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-gdpr__commitment-item p {
    color: #C0C0C0;
    font-size: 0.95em;
}

/* Your Rights Section */
.page-gdpr__your-rights .page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__right-item {
    background-color: #1A2A3A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid #3A4A5A;
}

.page-gdpr__item-graphic {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-gdpr__right-item h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #FFD700;
}

.page-gdpr__right-item p {
    color: #C0C0C0;
    font-size: 0.9em;
}

/* Contact Section */
.page-gdpr__contact {
    background-color: #2A3B4C;
    padding: 80px 0;
}

.page-gdpr__contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__contact-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

    .page-gdpr__what-is-gdpr .page-gdpr__content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-gdpr__what-is-gdpr .page-gdpr__text-content {
        padding-right: 0;
    }
}

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

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

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

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

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

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

    .page-gdpr__commitment-grid, .page-gdpr__rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gdpr__contact-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }

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

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

    .page-gdpr__commitment-grid, .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
}