/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-gdpr__highlight {
    color: #FFD700;
}

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A304F 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

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

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

/* Section Styling */
.page-gdpr__section {
    padding: 60px 0;
}

.page-gdpr__section--alt-bg {
    background-color: #1A2F4F;
}

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

.page-gdpr__text-content p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.page-gdpr__text-center {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 30px;
}

/* Grid Layouts */
.page-gdpr__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

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

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

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

.page-gdpr__img--full-width {
    display: block;
    margin: 40px auto 0;
    max-width: 80%;
}

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

.page-gdpr__principle-card {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-top: 3px solid #FFD700;
}

.page-gdpr__principle-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-gdpr__principle-card p {
    color: #c0c0c0;
}

.page-gdpr__list {
    list-style: none;
    padding-left: 0;
    color: #e0e0e0;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-gdpr__list li::before {
    content: '✓';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-gdpr__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__feature-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #FFD700;
}

.page-gdpr__feature-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-gdpr__feature-item p {
    color: #c0c0c0;
    font-size: 0.95em;
}

.page-gdpr__feature-icon {
    width: 60px;
    height: 60px;
    filter: invert(80%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold color effect */
}

.page-gdpr__contact-section {
    text-align: center;
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-top: 20px;
}

/* Buttons */
.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    color: #000;
}

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

.page-gdpr__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-gdpr__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__content-grid--reverse .page-gdpr__image-wrapper {
        order: -1;
    }
    .page-gdpr__img--full-width {
        max-width: 90%;
    }
}

@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__principles-grid, .page-gdpr__security-features {
        grid-template-columns: 1fr;
    }
    .page-gdpr__principle-card, .page-gdpr__feature-item {
        padding: 20px;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__img--full-width {
        max-width: 100%;
    }
    .page-gdpr__feature-icon {
        width: 50px;
        height: 50px;
    }
}