/* style/gdpr.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --text-color-light: #ffffff;
    --text-color-dark: #000000;
    --bg-dark: #0d0d0d;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: var(--text-color-light); /* Based on dark body background */
    background-color: var(--bg-dark);
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

.page-gdpr a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr a:hover {
    color: #ffd700cc; /* Slightly darker gold on hover */
    text-decoration: underline;
}

/* Ensure images are responsive */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    padding: 120px 20px 60px; /* Desktop padding-top for fixed header */
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(255, 215, 0, 0.2) 100%), url('[GALLERY:gdpr:gdpr_hero,background]') no-repeat center center/cover;
    background-blend-mode: multiply;
    box-shadow: inset 0 -50px 50px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__main-title {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    color: var(--text-color-light);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--text-color-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    background: #ffd700e6; /* Slightly lighter gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: var(--text-color-dark);
    text-decoration: none;
}

.page-gdpr__cta-button--secondary {
    background: var(--secondary-color);
    color: var(--text-color-light);
}

.page-gdpr__cta-button--secondary:hover {
    background: #a30000; /* Slightly darker red */
    color: var(--text-color-light);
}

.page-gdpr__section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color-dark);
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-gdpr__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-gdpr__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.page-gdpr__text-block {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    background: var(--card-bg-dark);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
    color: var(--text-color-light);
}

.page-gdpr__text-block img {
    margin-top: 20px;
    border: 1px solid var(--border-color-dark);
}

.page-gdpr__compliance-list {
    list-style-type: disc;
    padding-left: 25px;
    color: var(--text-color-light);
}

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

.page-gdpr__compliance-list strong {
    color: var(--primary-color);
}

.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-gdpr__card {
    background: var(--card-bg-dark);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--border-color-dark);
}

.page-gdpr__card-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
    border: none; /* Icons typically don't need borders */
    border-radius: 0; /* Keep icons sharp */
}

.page-gdpr__card-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-gdpr__card p {
    font-size: 0.95em;
    color: #e0e0e0;
}

.page-gdpr__collection-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-gdpr__collection-item {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    text-align: left;
}

.page-gdpr__list {
    list-style-type: disc;
    padding-left: 25px;
    color: var(--text-color-light);
}

.page-gdpr__list li {
    margin-bottom: 8px;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: 1.1em;
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__hero-section {
        padding-top: 100px; /* Adjust for smaller screens */
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 15px;
        line-height: 1.5;
    }
    .page-gdpr__hero-section {
        padding-top: 100px !important; /* Mobile padding-top for fixed header */
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-gdpr__hero-container {
        padding: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-gdpr__section {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-gdpr__container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-gdpr__section-description {
        font-size: 0.95em;
    }
    .page-gdpr__content-wrapper, .page-gdpr__rights-grid, .page-gdpr__collection-details {
        flex-direction: column;
        gap: 20px;
    }
    .page-gdpr__text-block, .page-gdpr__card, .page-gdpr__collection-item {
        padding: 20px;
        min-width: unset;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__card-icon {
        width: 80px;
        height: 80px;
    }
    .page-gdpr__card-title {
        font-size: 1.2em;
    }
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-gdpr__contact-info {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}