/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1A2C42; /* Primary brand color as main background */
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #1A2C42, #3A506B);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B147; /* Secondary color for emphasis */
    font-weight: bold;
}

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

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

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

.page-gdpr__section--alt-bg {
    background-color: #283e5a; /* Slightly lighter dark background for contrast */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #E0B147; /* Secondary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-gdpr__text--small {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 30px;
}

.page-gdpr__features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-gdpr__feature-item {
    background-color: #1A2C42;
    border: 1px solid #3A506B;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1 1 calc(33% - 60px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-gdpr__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E0B147);
}

.page-gdpr__feature-title {
    font-size: 1.5em;
    color: #E0B147;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__feature-description {
    color: #cccccc;
}

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

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    background-color: #1A2C42;
    border: 1px solid #3A506B;
    border-radius: 10px;
    padding: 20px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #f0f0f0;
}

.page-gdpr__list li::before {
    content: '✓';
    color: #E0B147; /* Checkmark color */
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-gdpr__list-strong {
    color: #E0B147;
}

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.page-gdpr__button--primary {
    background-color: #E0B147; /* Secondary color for primary action */
    color: #1A2C42;
    border: none;
    margin-right: 20px;
}

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

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

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

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

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

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

    .page-gdpr__features {
        flex-direction: column;
        gap: 20px;
    }

    .page-gdpr__feature-item {
        flex: 1 1 100%;
    }

    .page-gdpr__button {
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .page-gdpr__list {
        padding: 20px;
    }
}

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

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

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

    .page-gdpr__feature-icon {
        width: 60px;
        height: 60px;
    }

    .page-gdpr__feature-title {
        font-size: 1.3em;
    }

    .page-gdpr__list li {
        padding-left: 20px;
    }
}