/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Slightly lighter gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for emphasis */
    border-bottom: 2px solid #FFD700;
}

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: 700;
}

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

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

/* Content Section */
.page-gdpr__content-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-gdpr__article {
    margin-bottom: 50px;
    background-color: #1a2a47; /* Slightly lighter dark blue for article background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.page-gdpr__section-heading {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__article p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #F8F8F8;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #F8F8F8;
}

.page-gdpr__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
}

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

.page-gdpr__keyword {
    color: #FFD700;
    font-weight: bold;
}

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

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

.page-gdpr__image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 15px;
}

.page-gdpr__image--left {
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
}

/* Clearfix for floated images */
.page-gdpr__article::after {
    content: "";
    display: table;
    clear: both;
}

/* Call to Action Section */
.page-gdpr__cta-section {
    text-align: center;
    background-color: #1a2a47;
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD700;
}

.page-gdpr__cta-heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-gdpr__cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F8F8F8;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F; /* Dark text for gold button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__section-heading {
        font-size: 1.8em;
    }
    .page-gdpr__article p, .page-gdpr__list li {
        font-size: 1em;
    }
    .page-gdpr__image--right, .page-gdpr__image--left {
        float: none;
        margin: 20px auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 60px 0;
    }
    .page-gdpr__title {
        font-size: 2em;
    }
    .page-gdpr__subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__content-section {
        padding: 40px 0;
    }
    .page-gdpr__article {
        padding: 20px;
    }
    .page-gdpr__section-heading {
        font-size: 1.6em;
    }
    .page-gdpr__cta-heading {
        font-size: 2em;
    }
    .page-gdpr__cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__hero-image {
        max-width: 280px;
    }
    .page-gdpr__section-heading {
        font-size: 1.4em;
    }
    .page-gdpr__article p, .page-gdpr__list li {
        font-size: 0.95em;
    }
    .page-gdpr__list {
        margin-left: 20px;
    }
    .page-gdpr__cta-heading {
        font-size: 1.6em;
    }
    .page-gdpr__cta-section p {
        font-size: 1em;
    }
    .page-gdpr__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}