/* style/gdpr.css */

/* Biến màu */
:root {
  --page-gdpr-primary-color: #003366;
  --page-gdpr-secondary-color: #FFCC00;
  --page-gdpr-text-dark: #333333; /* For light backgrounds */
  --page-gdpr-text-light: #ffffff; /* For dark backgrounds */
  --page-gdpr-bg-light: #f8f8f8;
  --page-gdpr-bg-dark: #002244; /* Slightly lighter than primary for contrast */
}

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

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

.page-gdpr__hero {
  background: linear-gradient(135deg, var(--page-gdpr-primary-color), #004d99); /* Dark blue gradient */
  color: var(--page-gdpr-text-light);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,secure_pattern]') no-repeat center center/cover; /* Abstract background pattern */
  opacity: 0.1;
  z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
  position: relative;
  z-index: 1;
}

.page-gdpr__title {
  font-size: 3em;
  margin-bottom: 15px;
  color: var(--page-gdpr-secondary-color); /* Golden yellow for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__cta-button {
  display: inline-block;
  background-color: var(--page-gdpr-secondary-color);
  color: var(--page-gdpr-primary-color); /* Dark blue text on golden button */
  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;
  border: none;
  cursor: pointer;
}

.page-gdpr__cta-button:hover {
  background-color: #e6b800; /* Darker yellow on hover */
  transform: translateY(-3px);
}

.page-gdpr__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-gdpr__section:last-of-type {
  border-bottom: none;
}

.page-gdpr__section:nth-of-type(even) {
  background-color: var(--page-gdpr-bg-light);
}

.page-gdpr__section:nth-of-type(odd) {
  background-color: #ffffff;
}

.page-gdpr__heading {
  font-size: 2.2em;
  color: var(--page-gdpr-primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-gdpr__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--page-gdpr-secondary-color);
  border-radius: 2px;
}

.page-gdpr__section p {
  margin-bottom: 20px;
  color: var(--page-gdpr-text-dark);
  font-size: 1.05em;
}

.page-gdpr__section strong {
  color: var(--page-gdpr-primary-color);
}

.page-gdpr__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--page-gdpr-text-dark);
}

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

.page-gdpr__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  object-fit: cover;
}

.page-gdpr__image--left {
  float: left;
  margin-right: 30px;
  margin-bottom: 15px;
}

.page-gdpr__image--right {
  float: right;
  margin-left: 30px;
  margin-bottom: 15px;
}

.page-gdpr__contact-info {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--page-gdpr-primary-color);
  margin-top: 30px;
}

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

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

.page-gdpr__conclusion {
  background-color: var(--page-gdpr-bg-dark);
  color: var(--page-gdpr-text-light);
  text-align: center;
  padding: 80px 20px;
}

.page-gdpr__conclusion .page-gdpr__heading {
  color: var(--page-gdpr-secondary-color);
}

.page-gdpr__conclusion .page-gdpr__heading::after {
  background-color: var(--page-gdpr-text-light);
}

.page-gdpr__conclusion p {
  color: var(--page-gdpr-text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__title {
    font-size: 2.5em;
  }

  .page-gdpr__heading {
    font-size: 1.8em;
  }

  .page-gdpr__image--left, .page-gdpr__image--right {
    float: none;
    margin: 0 auto 30px auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .page-gdpr__title {
    font-size: 2em;
  }

  .page-gdpr__subtitle {
    font-size: 1em;
  }

  .page-gdpr__heading {
    font-size: 1.5em;
  }

  .page-gdpr__hero {
    padding: 60px 20px;
  }

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

  .page-gdpr__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

@media (max-width: 480px) {
  .page-gdpr__title {
    font-size: 1.8em;
  }

  .page-gdpr__heading {
    font-size: 1.3em;
  }

  .page-gdpr__list {
    margin-left: 15px;
  }

  .page-gdpr__section p, .page-gdpr__list li {
    font-size: 0.95em;
  }
}