/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #0A1931; /* Main dark background */
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%);
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-gdpr__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-gdpr__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    color: #cccccc;
    margin-bottom: 30px;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
}

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

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

.page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark text on gold */
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: #1a3a66; /* Darker blue button */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #0A1931;
    transform: translateY(-2px);
}

.page-gdpr__intro, .page-gdpr__principles, .page-gdpr__rights, .page-gdpr__contact, .page-gdpr__footer-links {
    padding: 60px 0;
}

.page-gdpr__intro {
    background-color: #0A1931;
}

.page-gdpr__principles {
    background-color: #1a3a66;
}

.page-gdpr__rights {
    background-color: #0A1931;
}

.page-gdpr__contact {
    background-color: #1a3a66;
    text-align: center;
}

.page-gdpr__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__intro p, .page-gdpr__rights p, .page-gdpr__contact p {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-align: justify;
}

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

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

.page-gdpr__principle-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-gdpr__principle-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__item-title {
    font-size: 1.4em;
    color: #FFD700; /* Gold for principle titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__principle-item p {
    color: #cccccc;
    font-size: 1em;
}

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

.page-gdpr__list li {
    background-color: #1a3a66;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.page-gdpr__list li:hover {
    background-color: #2a4b7a;
}

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

.page-gdpr__contact p strong {
    color: #FFD700;
}

.page-gdpr__footer-links {
    background-color: #0A1931;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #1a3a66;
}

.page-gdpr__footer-links p {
    color: #cccccc;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-gdpr__footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.page-gdpr__footer-nav li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: color 0.3s ease, transform 0.2s ease;
}

.page-gdpr__footer-nav li a:hover {
    color: #e6c200;
    transform: scale(1.05);
}

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

    .page-gdpr__subtitle {
        font-size: 1em;
    }

    .page-gdpr__heading {
        font-size: 2em;
    }

    .page-gdpr__intro, .page-gdpr__principles, .page-gdpr__rights, .page-gdpr__contact, .page-gdpr__footer-links {
        padding: 40px 0;
    }

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

    .page-gdpr__principle-item {
        padding: 25px;
    }

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

    .page-gdpr__list li {
        padding: 15px;
        font-size: 1em;
    }

    .page-gdpr__footer-nav {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }

    .page-gdpr__heading {
        font-size: 1.8em;
    }

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