.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
}

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

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

.page-gdpr__dark-section {
    background: #B71C1C;
    color: #FFF5E1;
}

.page-gdpr__light-bg {
    background: #ffffff;
    color: #333333;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: inherit;
    font-weight: bold;
}

.page-gdpr__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    color: inherit;
}

.page-gdpr__highlight {
    color: #FFCC66; /* Glow color for highlights */
    font-weight: bold;
}

/* Hero Section */
.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: #B71C1C; /* Deep Red background if image not loaded */
}

.page-gdpr__hero-image-container {
    width: 100%;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gdpr__hero-content {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #FFF5E1; /* Text Main color */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: #C91F17; /* Using primary brand color for contrast */
    color: #ffffff; /* White text for contrast */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__btn-primary:hover {
    background: #E53935; /* Auxiliary color for hover */
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: #ffffff;
    color: #C91F17; /* Primary brand color for text */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid #C91F17;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
    background: #C91F17;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Features Grid */
.page-gdpr__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-gdpr__feature-item {
    padding: 25px;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-gdpr__feature-title {
    font-size: 1.5em;
    color: #C91F17;
    margin-bottom: 15px;
}

.page-gdpr__feature-text {
    font-size: 1em;
    line-height: 1.7;
}

/* Principles Grid */
.page-gdpr__principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__principle-card {
    background: #D32F2F; /* Card B G color */
    color: #FFF5E1; /* Text Main color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__card-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-gdpr__card-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #FFCC66; /* Glow color for titles */
}

.page-gdpr__card-text {
    font-size: 1em;
    line-height: 1.7;
}

/* Your Rights Section */
.page-gdpr__rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-gdpr__right-item {
    background: #f9f9f9;
    padding: 25px;
    border-left: 5px solid #E53935;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    color: #333333;
}

.page-gdpr__right-title {
    font-size: 1.4em;
    color: #E53935;
    margin-bottom: 10px;
}

.page-gdpr__right-text {
    font-size: 1em;
    line-height: 1.7;
}

/* Data Collection and Usage Section */
.page-gdpr__info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__info-card {
    background: #D32F2F;
    color: #FFF5E1;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__info-card .page-gdpr__card-title {
    color: #FFCC66;
}

.page-gdpr__info-list {
    list-style: disc;
    margin-left: 20px;
    font-size: 1em;
    line-height: 1.8;
}

.page-gdpr__info-list strong {
    color: #F4D34D; /* Gold color */
}

/* Data Security Section */
.page-gdpr__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.page-gdpr__security-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-gdpr__security-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-gdpr__security-title {
    font-size: 1.4em;
    color: #C91F17;
    margin-bottom: 15px;
}

/* Contact & FAQ Section */
.page-gdpr__faq-list {
    margin-top: 40px;
}

.page-gdpr__faq-item {
    background: #D32F2F;
    color: #FFF5E1;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #FFCC66;
    list-style: none;
}

.page-gdpr__faq-question::-webkit-details-marker, /* Hide default marker for Webkit */
.page-gdpr__faq-question::marker { /* Hide default marker for Firefox */
    display: none;
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFF5E1;
}

.page-gdpr__faq-answer {
    padding: 0 30px 20px 30px;
    font-size: 1em;
    line-height: 1.7;
    color: #FFF5E1;
}

.page-gdpr__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
    }

    .page-gdpr__hero-content {
        padding: 30px 15px;
    }

    .page-gdpr__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-gdpr__intro-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    /* Buttons */
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 10px; /* Add margin between stacked buttons */
    }

    .page-gdpr__cta-bottom {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Images */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-gdpr__hero-image-container,
    .page-gdpr__principle-card,
    .page-gdpr__info-card,
    .page-gdpr__security-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-gdpr__text-block {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-gdpr__features-grid,
    .page-gdpr__principles-grid,
    .page-gdpr__rights-list,
    .page-gdpr__info-grid,
    .page-gdpr__security-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .page-gdpr__feature-item,
    .page-gdpr__right-item,
    .page-gdpr__security-item,
    .page-gdpr__principle-card,
    .page-gdpr__info-card {
        padding: 20px;
    }

    .page-gdpr__feature-title,
    .page-gdpr__right-title,
    .page-gdpr__security-title,
    .page-gdpr__card-title {
        font-size: 1.3em;
    }

    .page-gdpr__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-gdpr__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 1024px) {
    .page-gdpr__container {
        padding: 0 30px;
    }

    .page-gdpr__main-title {
        font-size: 2.8em;
    }

    .page-gdpr__intro-description {
        font-size: 1.1em;
    }

    .page-gdpr__section-title {
        font-size: 2.2em;
    }

    .page-gdpr__principles-grid,
    .page-gdpr__info-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}