/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Text color for dark background */
    background-color: #000000; /* Main background color */
}

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

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #000000, #333333);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,dark_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.page-gdpr__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-gdpr__heading {
    font-size: 2.2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    display: inline-block;
}

.page-gdpr__subheading {
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__text {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.page-gdpr__principle-item {
    background-color: #2c2c2c;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__principle-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

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

.page-gdpr__list li {
    background-color: #2c2c2c;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    color: #e0e0e0;
    font-size: 1.1em;
}

.page-gdpr__list li strong {
    color: #FFD700;
}

.page-gdpr__image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__image--full-width {
    max-width: 100%;
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 40%;
}

.page-gdpr__cta-section {
    text-align: center;
    background-color: #0e0e0e;
    padding: 60px 40px;
    margin-top: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
}

.page-gdpr__cta-section .page-gdpr__heading {
    color: #FFD700;
    font-size: 2.5em;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
}

.page-gdpr__cta-section .page-gdpr__text {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.page-gdpr__button: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__title {
        font-size: 2.8em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__subheading {
        font-size: 1.3em;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-gdpr__image--right {
        float: none;
        margin: 30px auto;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 60px 0 30px;
    }
    .page-gdpr__title {
        font-size: 2.2em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__content-section {
        padding: 40px 0;
    }
    .page-gdpr__heading {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .page-gdpr__subheading {
        font-size: 1.2em;
    }
    .page-gdpr__text {
        font-size: 1em;
    }
    .page-gdpr__principle-item {
        padding: 20px;
    }
    .page-gdpr__list li {
        padding: 12px 15px;
        font-size: 1em;
    }
    .page-gdpr__cta-section {
        padding: 40px 20px;
        margin-top: 40px;
    }
    .page-gdpr__cta-section .page-gdpr__heading {
        font-size: 2em;
    }
    .page-gdpr__cta-section .page-gdpr__text {
        font-size: 1.1em;
    }
    .page-gdpr__button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__heading {
        font-size: 1.4em;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__image {
        max-width: 100%;
    }
}