:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
  --body-bg: #0D0E12;
}

.page-gdpr {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--body-bg);
}

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

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

/* HERO Section */
.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;
  background-color: #1a1a1a;
  overflow: hidden;
}

.page-gdpr__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-gdpr__hero-image {
  width: 100%;
  margin-bottom: 30px;
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-gdpr__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-gdpr__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.page-gdpr__hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-gdpr__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
  background: linear-gradient(180deg, var(--deep-orange) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-gdpr__section {
  padding: 80px 0;
  background-color: var(--body-bg);
  border-bottom: 1px solid var(--border-color);
}

.page-gdpr__section--introduction {
  background-color: #12141a;
}
.page-gdpr__section--principles {
  background-color: #0D0E12;
}
.page-gdpr__section--rights {
  background-color: #12141a;
}
.page-gdpr__section--security {
  background-color: #0D0E12;
}
.page-gdpr__section--contact {
  background-color: #12141a;
}
.page-gdpr__section--related-policies {
  background-color: #0D0E12;
  border-bottom: none;
}
.page-gdpr__section--call-to-action {
  padding-bottom: 80px;
  background-color: #1a1a1a;
  text-align: center;
}

.page-gdpr__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-gdpr__container--center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-gdpr__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-main);
  text-align: justify;
}
.page-gdpr__text-block:last-of-type {
  margin-bottom: 0;
}

/* Principle Cards */
.page-gdpr__principle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-gdpr__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-gdpr__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__card-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__card-text {
  font-size: 0.95rem;
  color: var(--text-main);
  flex-grow: 1;
}

/* User 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: 25px;
}

.page-gdpr__rights-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
  height: 100%;
}
.page-gdpr__rights-item:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.page-gdpr__rights-item-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__rights-item-text {
  font-size: 0.9rem;
  color: var(--text-main);
}

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

.page-gdpr__security-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-gdpr__security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.page-gdpr__security-item img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-gdpr__security-item-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gdpr__security-item-text {
  font-size: 0.95rem;
  color: var(--text-main);
  flex-grow: 1;
}

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

.page-gdpr__contact-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.page-gdpr__contact-item-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-gdpr__contact-item-text {
  font-size: 0.95rem;
  color: var(--text-main);
}

/* Policy Links */
.page-gdpr__policy-links {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-gdpr__policy-item a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2a2e3a;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  color: var(--text-main);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 0.95rem;
}

.page-gdpr__policy-item a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
  text-decoration: none;
}

.page-gdpr__cta-button--bottom {
  margin-top: 40px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-gdpr__hero-image img {
    border-radius: 6px;
  }
  .page-gdpr__principle-cards,
  .page-gdpr__rights-list,
  .page-gdpr__security-list,
  .page-gdpr__contact-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .page-gdpr__section {
    padding: 60px 0;
  }
  .page-gdpr__section-title {
    margin-bottom: 30px;
  }
  .page-gdpr__card, .page-gdpr__rights-item, .page-gdpr__security-item, .page-gdpr__contact-item {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-gdpr__hero-image img {
    border-radius: 4px;
  }
  .page-gdpr__main-title {
    font-size: 2rem;
  }
  .page-gdpr__hero-description {
    font-size: 0.95rem;
  }
  .page-gdpr__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    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 0;
  }
  .page-gdpr__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .page-gdpr__text-block {
    font-size: 0.9rem;
  }

  .page-gdpr__principle-cards,
  .page-gdpr__rights-list,
  .page-gdpr__security-list,
  .page-gdpr__contact-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-gdpr__card, .page-gdpr__rights-item, .page-gdpr__security-item, .page-gdpr__contact-item {
    padding: 20px;
  }
  .page-gdpr__card-title, .page-gdpr__rights-item-title, .page-gdpr__security-item-title, .page-gdpr__contact-item-title {
    font-size: 1.2rem;
  }
  .page-gdpr__card-text, .page-gdpr__rights-item-text, .page-gdpr__security-item-text, .page-gdpr__contact-item-text {
    font-size: 0.85rem;
  }

  /* Image responsive rules */
  .page-gdpr img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  .page-gdpr__hero-image,
  .page-gdpr__security-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-gdpr__policy-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .page-gdpr__policy-item a {
    width: 100%;
    text-align: center;
  }
}