/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header on desktop */
}

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff; /* White text on dark hero overlay */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a minimum height */
}

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

.page-gdpr__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7); /* Dark overlay with main color */
    z-index: 2;
}

.page-gdpr__hero-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0 auto;
}

.page-gdpr__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFCC00; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__intro-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold button */
    color: #003366; /* Dark blue text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid #FFCC00;
}

.page-gdpr__cta-button:hover {
    background-color: #e6b800; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

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

.page-gdpr__section-heading {
    font-size: 2.2em;
    color: #003366; /* Dark blue heading */
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

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

.page-gdpr__paragraph {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

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

.page-gdpr__principle-card,
.page-gdpr__right-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-gdpr__principle-card:hover,
.page-gdpr__right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FFCC00;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
}

.page-gdpr__list-item strong {
    color: #003366;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Minimum display size */
    min-height: 200px; /* Minimum display size */
}

.page-gdpr__link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #FFCC00;
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__contact-item {
    background-color: #e6f0f7; /* Light blue background */
    border-left: 5px solid #003366;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
}

.page-gdpr__contact-item strong {
    color: #003366;
}

.page-gdpr__final-cta {
    text-align: center;
    background-color: #003366; /* Dark blue background */
    color: #ffffff;
    padding: 60px 20px;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-gdpr__final-cta-title {
    font-size: 2.5em;
    color: #FFCC00;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-gdpr__final-cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__secondary-cta-button {
    display: inline-block;
    background-color: transparent;
    color: #FFCC00; /* Gold text */
    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.2s ease;
    border: 2px solid #FFCC00;
    margin-left: 20px;
}

.page-gdpr__secondary-cta-button:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-heading {
        font-size: 2em;
    }
    .page-gdpr__final-cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        min-height: 400px;
        padding: 30px 15px;
    }
    .page-gdpr__main-title {
        font-size: 2em;
    }
    .page-gdpr__intro-description {
        font-size: 1em;
    }
    .page-gdpr__cta-button,
    .page-gdpr__secondary-cta-button {
        padding: 12px 25px;
        font-size: 1em;
        margin-left: 0;
        margin-top: 15px;
    }
    .page-gdpr__section-heading {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-gdpr__content-area {
        padding: 30px 15px;
    }
    .page-gdpr__principles-grid,
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-gdpr__card-title {
        font-size: 1.3em;
    }
    .page-gdpr__list-item,
    .page-gdpr__contact-item,
    .page-gdpr__paragraph {
        font-size: 0.95em;
    }
    .page-gdpr__final-cta {
        padding: 40px 15px;
    }
    .page-gdpr__final-cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__final-cta-text {
        font-size: 1.1em;
    }
    .page-gdpr__hero-container {
      padding: 20px 15px;
    }
    .page-gdpr__content-image {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__secondary-cta-button {
        margin-top: 15px;
    }
}