/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    line-height: 1.6;
    background-color: #0A1931; /* Main background color */
}

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

/* Hero Section */
.page-gdpr__hero {
    background-color: #0A1931;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

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

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

.page-gdpr__section:nth-of-type(even) {
    background-color: #1a2a47; /* Slightly lighter dark blue for contrast */
}

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

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

/* Introduction Section */
.page-gdpr__introduction p {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

/* Principles Section */
.page-gdpr__principles-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-gdpr__principles-content {
    flex: 2;
    min-width: 300px;
}

.page-gdpr__principles-content p {
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-gdpr__principles-content ul {
    list-style: none;
    padding-left: 0;
}

.page-gdpr__principles-content ul li {
    background-color: #0A1931;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
    color: #FFFFFF;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-gdpr__principles-content ul li strong {
    color: #FFD700;
}

.page-gdpr__principles-image {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Rights Section */
.page-gdpr__rights p {
    color: #E0E0E0;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.page-gdpr__right-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__right-item p {
    color: #E0E0E0;
    font-size: 1em;
    margin-bottom: 0;
}

.page-gdpr__rights-image {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Security Section */
.page-gdpr__security-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap-reverse; /* Image on right for larger screens */
}

.page-gdpr__security-content p {
    flex: 2;
    min-width: 300px;
    color: #E0E0E0;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-gdpr__security-image {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.page-gdpr__contact p {
    color: #E0E0E0;
    text-align: center;
    margin-bottom: 20px;
}

.page-gdpr__contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: #b39700;
    text-decoration: underline;
}

.page-gdpr__button {
    display: block;
    width: fit-content;
    margin: 40px auto 0 auto;
    background-color: #FFD700;
    color: #0A1931;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button:hover {
    background-color: #b39700;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

    .page-gdpr__hero-description,
    .page-gdpr__introduction p,
    .page-gdpr__security-content p {
        font-size: 1em;
    }

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

    .page-gdpr__principles-grid,
    .page-gdpr__security-content {
        flex-direction: column;
        text-align: center;
    }

    .page-gdpr__principles-image,
    .page-gdpr__security-image {
        order: -1; /* Image first on mobile */
        margin-bottom: 30px;
    }

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

    .page-gdpr__button {
        width: 80%;
    }
}

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

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

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

    .page-gdpr__container {
        padding: 0 15px;
    }
}