.page-gdpr {
    color: #333333; /* Dark text for light body background */
}

.page-gdpr__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Minimum height for hero */
}

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

.page-gdpr__hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-gdpr__hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #F0F0F0;
}

.page-gdpr__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__btn--primary:hover {
    background-color: #e0a53a;
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-gdpr__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.page-gdpr__article {
    line-height: 1.7;
}

.page-gdpr__section-title {
    font-size: 2.5rem;
    color: #000000;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__subsection-title {
    font-size: 2rem;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__paragraph {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333333;
}

.page-gdpr__paragraph a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__paragraph a:hover {
    text-decoration: underline;
}

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

.page-gdpr__card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__card-image {
    width: 100%; /* Ensure images are not small */
    height: 200px; /* Minimum height for content images */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-gdpr__card-title {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 10px;
}

.page-gdpr__card-description {
    font-size: 0.95rem;
    color: #555555;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-gdpr__rights-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-gdpr__rights-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
    min-width: 80px; /* Ensure icon is not smaller than 80px */
    min-height: 80px;
}

.page-gdpr__rights-title {
    font-size: 1.25rem;
    color: #000000;
    margin-top: 0;
    margin-bottom: 8px;
}

.page-gdpr__rights-description {
    font-size: 0.9rem;
    color: #555555;
}

.page-gdpr__rights-description a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__rights-description a:hover {
    text-decoration: underline;
}

.page-gdpr__data-usage-list,
.page-gdpr__security-list,
.page-gdpr__third-party-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-gdpr__data-usage-item,
.page-gdpr__security-item,
.page-gdpr__third-party-item {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: #333333;
}

.page-gdpr__data-usage-item strong,
.page-gdpr__security-item strong,
.page-gdpr__third-party-item strong {
    color: #000000;
}

.page-gdpr__data-usage-item a,
.page-gdpr__security-item a,
.page-gdpr__third-party-item a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__data-usage-item a:hover,
.page-gdpr__security-item a:hover,
.page-gdpr__third-party-item a:hover {
    text-decoration: underline;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__contact-image {
    width: 100%; /* Ensure image is not small */
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-gdpr__contact-text {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333333;
}

.page-gdpr__contact-text strong {
    color: #000000;
}

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

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

.page-gdpr__call-to-action {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__cta-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 3rem;
    }
    .page-gdpr__hero-description {
        font-size: 1.1rem;
    }
    .page-gdpr__section-title {
        font-size: 2.2rem;
    }
    .page-gdpr__subsection-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        min-height: 450px;
        padding-top: var(--header-offset, 120px);
    }
    .page-gdpr__hero-title {
        font-size: 2.5rem;
    }
    .page-gdpr__hero-description {
        font-size: 1rem;
    }
    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-gdpr__content-area {
        padding: 20px 15px;
    }
    .page-gdpr__section-title {
        font-size: 2rem;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-gdpr__subsection-title {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-gdpr__paragraph {
        font-size: 1rem;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__rights-list {
        grid-template-columns: 1fr;
    }
    .page-gdpr__rights-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }
    /* Ensure content area images are responsive and don't overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__card-image, .page-gdpr__contact-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Still ensure minimum size */
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2rem;
    }
    .page-gdpr__hero-description {
        font-size: 0.9rem;
    }
    .page-gdpr__btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: 1.8rem;
    }
    .page-gdpr__subsection-title {
        font-size: 1.4rem;
    }
    .page-gdpr__rights-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}