:root {
    --color-primary: #C91F17;
    --color-secondary: #E53935;
    --color-button-gradient-start: #FFD86A;
    --color-button-gradient-end: #E6B800;
    --color-card-bg: #D32F2F;
    --color-background-main: #B71C1C;
    --color-text-main: #FFF5E1;
    --color-border: #F2B544;
    --color-glow: #FFCC66;
    --color-gold: #F4D34D;
    --color-deep-red: #7A0E0E;
    --color-text-dark: #333333; /* For light backgrounds */
    --color-text-light: #ffffff; /* For dark backgrounds */
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Default text color for dark body background */
    background-color: var(--color-background-main); /* Explicitly set for content area */
    direction: ltr;
}

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

.page-gdpr a:hover {
    color: var(--color-glow);
    text-decoration: underline;
}

/* Headings */
.page-gdpr h1,
.page-gdpr h2,
.page-gdpr h3 {
    color: var(--color-text-light); /* Headings should be light on dark backgrounds */
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr h1 {
    /* No fixed font-size for h1, rely on font-weight, line-height, etc. */
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr h2 {
    font-size: 2.2em;
    font-weight: 600;
}

.page-gdpr h3 {
    font-size: 1.6em;
    font-weight: 500;
}

/* Sections */
.page-gdpr__section {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.page-gdpr__section--dark-bg {
    background-color: var(--color-deep-red); /* Darker background for contrast */
}

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

.page-gdpr__section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-gold); /* Gold for titles for emphasis */
}

.page-gdpr__section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--color-text-main);
}

/* Hero Section (first section, not full-page hero, but leading title) */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles main offset */
    background-color: var(--color-deep-red); /* Consistent background */
    overflow: hidden;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

.page-gdpr__hero-content h1 {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
    margin-bottom: 20px;
    color: var(--color-gold);
}

.page-gdpr__intro-text {
    font-size: 1.2em;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.page-gdpr__hero-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.page-gdpr__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* CTA Button */
.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-dark); /* Dark text on gold button */
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--large {
    font-size: 1.3em;
    padding: 18px 50px;
}

/* Content Grid */
.page-gdpr__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-gdpr__content-grid > div {
    flex: 1;
    min-width: 300px;
}

.page-gdpr__image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

/* Compliance Features */
.page-gdpr__compliance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__feature-card {
    background-color: var(--color-card-bg); /* Use Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.page-gdpr__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__feature-card img {
    width: 100%;
    height: auto;
     /* Adjust max-width for feature icons/images */
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

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

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

.page-gdpr__rights-item {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.page-gdpr__rights-title {
    color: var(--color-gold);
    font-size: 1.25em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr__rights-item p {
    color: var(--color-text-main);
}

.page-gdpr__outro-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: var(--color-text-main);
}

/* Contact Info */
.page-gdpr__contact-info {
    background-color: var(--color-card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
}

.page-gdpr__contact-info ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__contact-info li {
    margin-bottom: 10px;
    color: var(--color-text-main);
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding-bottom: 80px;
}

details.page-gdpr__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-card-bg);
  color: var(--color-text-main);
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--color-gold); /* FAQ question text */
  font-weight: bold;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
  display: none;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
  background: var(--color-deep-red); /* Slightly darker hover */
}
.page-gdpr__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--color-gold);
}
.page-gdpr__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
  padding: 0 20px 20px;
  background: var(--color-background-main); /* Match main background for answer */
  border-radius: 0 0 5px 5px;
  color: var(--color-text-main);
}
.page-gdpr__faq-answer p {
    color: var(--color-text-main);
}

/* Call to Action at bottom */
.page-gdpr__call-to-action {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--color-deep-red);
    color: var(--color-text-main);
    border-top: 1px solid var(--color-border);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__compliance-features,
    .page-gdpr__rights-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__section {
        padding: 40px 0;
    }

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

    .page-gdpr h1 {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    
    .page-gdpr h2 {
        font-size: 1.8em;
    }

    .page-gdpr h3 {
        font-size: 1.3em;
    }

    .page-gdpr__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile as well */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__hero-content {
        margin-bottom: 20px;
    }

    .page-gdpr__intro-text {
        font-size: 1em;
    }

    .page-gdpr__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        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;
    }

    .page-gdpr__cta-button--large {
        font-size: 1.1em;
        padding: 15px 40px;
    }

    .page-gdpr__content-grid {
        flex-direction: column;
        gap: 30px;
    }

    .page-gdpr__compliance-features,
    .page-gdpr__rights-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-gdpr__feature-card,
    .page-gdpr__rights-item,
    .page-gdpr__contact-info {
        padding: 20px;
    }
    
    /* Image responsiveness */
    .page-gdpr img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block;
    }

    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* FAQ mobile styles */
    details.page-gdpr__faq-item summary.page-gdpr__faq-question { padding: 15px; }
    .page-gdpr__faq-qtext { font-size: 1em; }
    .page-gdpr__faq-answer { padding: 0 15px 15px; }
}