/* style/gdpr.css */

/* Base styling for GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Primary color gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__heading {
    font-size: 2em;
    color: #007bff; /* Primary color for headings */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Secondary color for accent */
    border-radius: 2px;
}

.page-gdpr__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

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

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

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

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-gdpr__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Call to Action Button */
.page-gdpr__button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    background-color: #ffc107; /* Secondary color for button */
    color: #333; /* Dark text for contrast on light button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button:hover {
    background-color: #e0a800; /* Darker shade on hover */
    transform: translateY(-2px);
    color: #000;
}

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

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

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

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

    .page-gdpr__section p, .page-gdpr__list li {
        font-size: 1em;
    }
}

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

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

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

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

    .page-gdpr__list {
        margin-left: 15px;
    }

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