/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for general text on light background */
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-gdpr__hero {
    position: relative;
    background-color: #1A237E; /* Main color */
    color: #FFFFFF; /* White text on dark background */
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    line-height: 1.5;
    color: #e0e0e0; /* Slightly off-white for subtitle */
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

/* General Headings */
.page-gdpr__heading {
    font-size: 2.2em;
    color: #1A237E; /* Main color for headings */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.page-gdpr__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Accent color underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Introduction Section */
.page-gdpr__introduction {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-gdpr__introduction p {
    font-size: 1.1em;
    margin-bottom: 1em;
    text-align: justify;
}

/* Detail List Section */
.page-gdpr__details {
    padding: 60px 0;
    background-color: #f0f2f5;
}

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

.page-gdpr__detail-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-gdpr__detail-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__detail-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.page-gdpr__item-title {
    font-size: 1.5em;
    color: #1A237E; /* Main color for item titles */
    margin-bottom: 15px;
}

.page-gdpr__item-title a {
    color: #1A237E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__item-title a:hover {
    color: #FFD700; /* Accent color on hover */
}

.page-gdpr__item-description {
    font-size: 1em;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Buttons */
.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for buttons */
    color: #1A237E; /* Main color for button text */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-gdpr__button:hover {
    background-color: #e6c200; /* Darker accent on hover */
    color: #0d124b; /* Darker main color on hover */
}

.page-gdpr__button--primary {
    background-color: #1A237E; /* Main color for primary button */
    color: #FFD700; /* Accent color for primary button text */
}

.page-gdpr__button--primary:hover {
    background-color: #0d124b; /* Darker main color on hover */
    color: #e6c200; /* Darker accent on hover */
}

/* Text links */
.page-gdpr__text-link {
    color: #1A237E; /* Main color for text links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
    color: #FFD700; /* Accent color on hover */
}

/* Contact CTA Section */
.page-gdpr__contact-cta {
    padding: 80px 0;
    background-color: #1A237E; /* Main color background */
    color: #FFFFFF; /* White text */
    text-align: center;
}

.page-gdpr__contact-cta .page-gdpr__heading {
    color: #FFD700; /* Accent color for heading */
}

.page-gdpr__contact-cta .page-gdpr__heading::after {
    background-color: #FFFFFF; /* White underline */
}

.page-gdpr__contact-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0; /* Slightly off-white */
}

.page-gdpr__contact-cta .page-gdpr__text-link {
    color: #FFD700; /* Accent color for links */
}

.page-gdpr__contact-cta .page-gdpr__text-link:hover {
    color: #FFFFFF; /* White on hover */
}

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

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

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

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

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

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

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

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

    .page-gdpr__detail-item {
        padding: 20px;
    }

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}