/* style/gdpr.css */

/* General Page Styling */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A192F; /* Main background color */
}

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

.page-gdpr-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr-section:last-of-type {
    border-bottom: none;
}

/* Headings */
.page-gdpr-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr-subtitle {
    font-size: 1.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
}

.page-gdpr-heading {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: left;
    font-weight: bold;
}

/* Paragraphs */
.page-gdpr p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

/* Lists */
.page-gdpr-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-gdpr-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

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

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

/* Images within sections */
.page-gdpr-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr-image-right {
    float: right;
    margin-left: 30px;
    width: 40%;
    min-width: 300px;
}

.page-gdpr-image-left {
    float: left;
    margin-right: 30px;
    width: 40%;
    min-width: 300px;
}

.page-gdpr-image-full-width {
    display: block;
    margin: 30px auto;
    width: 90%;
}

/* Clear floats for images */
.page-gdpr-section::after {
    content: "";
    display: table;
    clear: both;
}

/* Contact Section */
.page-gdpr-contact {
    text-align: center;
}

.page-gdpr-contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

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

/* Buttons */
.page-gdpr-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFD700;
}

.page-gdpr-button:hover {
    background-color: #b39700;
    color: #FFFFFF;
    border-color: #b39700;
}

/* Disclaimer */
.page-gdpr-disclaimer {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
    font-size: 0.9em;
    color: #A0A0A0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr-title {
        font-size: 2.8em;
    }

    .page-gdpr-subtitle {
        font-size: 1.3em;
    }

    .page-gdpr-heading {
        font-size: 1.8em;
    }

    .page-gdpr-image-right, .page-gdpr-image-left {
        float: none;
        margin: 20px auto;
        width: 80%;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-gdpr-title {
        font-size: 2.2em;
    }

    .page-gdpr-subtitle {
        font-size: 1.1em;
    }

    .page-gdpr-heading {
        font-size: 1.6em;
    }

    .page-gdpr p,
    .page-gdpr-list li {
        font-size: 1em;
    }

    .page-gdpr-hero {
        padding: 60px 0 30px 0;
    }

    .page-gdpr-section {
        padding: 40px 0;
    }

    .page-gdpr-hero-image {
        max-width: 90%;
    }
}

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

    .page-gdpr-subtitle {
        font-size: 1em;
    }

    .page-gdpr-heading {
        font-size: 1.4em;
    }

    .page-gdpr-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-gdpr-list {
        margin-left: 15px;
    }

    .page-gdpr-image-full-width {
        width: 100%;
    }
}