.page-gdpr {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px);
}

.page-gdpr__hero-section {
    background-color: #007BFF;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFC107;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__hero-button {
    display: inline-block;
    background-color: #FFC107;
    color: #007BFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__hero-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

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

.page-gdpr__section {
    margin-bottom: 50px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #007BFF;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFC107;
    padding-bottom: 10px;
}

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

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

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

.page-gdpr__grid-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #007BFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__grid-title {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-gdpr__grid-text {
    font-size: 1em;
    line-height: 1.6;
}

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

.page-gdpr__card {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    margin-bottom: 15px;
}

.page-gdpr__card-title {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-gdpr__card-text {
    font-size: 0.95em;
    color: #555555;
    padding: 0 15px;
}

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

.page-gdpr__rights-item {
    background-color: #f0f8ff;
    border-left: 4px solid #007BFF;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.page-gdpr__rights-title {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-gdpr__rights-text {
    font-size: 1em;
    line-height: 1.6;
}

.page-gdpr__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-gdpr__steps-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 25px;
}

.page-gdpr__steps-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFC107;
    color: #007BFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-gdpr__steps-title {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-gdpr__steps-text {
    font-size: 1em;
    line-height: 1.6;
}

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

.page-gdpr__security-item {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__security-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
    /* Ensure images are at least 200x200px at source, but display size can be smaller if appropriate for icons. The HTML width/height for these are 60x60, which is allowed for icons. */
}

.page-gdpr__security-title {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
}

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

.page-gdpr__contact-link {
    color: #007BFF;
    text-decoration: underline;
    font-weight: bold;
}

.page-gdpr__contact-link:hover {
    color: #0056b3;
}

.page-gdpr__contact-button {
    display: inline-block;
    background-color: #007BFF;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__contact-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px);
    }
    .page-gdpr__hero-section {
        padding: 40px 15px;
    }
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__content-area {
        padding: 20px 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__grid-text, .page-gdpr__card-text, .page-gdpr__rights-text, .page-gdpr__steps-text, .page-gdpr__security-text {
        font-size: 0.95em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__cards-container {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card-image {
        height: 200px;
    }
    .page-gdpr__rights-title, .page-gdpr__steps-title, .page-gdpr__security-title {
        font-size: 1.3em;
    }
    .page-gdpr__steps-item {
        padding-left: 50px;
    }
    .page-gdpr__steps-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .page-gdpr__security-list {
        grid-template-columns: 1fr;
    }
    /* Ensure images in content area do not overflow on mobile */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__security-icon {
        width: 60px;
        height: 60px;
    }
}