/* style/gdpr.css */

/* Biến CSS */
:root {
  --page-gdpr-primary-color: #1A2B3C;
  --page-gdpr-accent-color: #FFD700;
  --page-gdpr-text-light: #F0F0F0;
  --page-gdpr-text-dark: #333333;
  --page-gdpr-background-dark: #121E2C;
  --page-gdpr-background-light: #2A3D50;
  --page-gdpr-border-color: rgba(255, 215, 0, 0.3);
  --page-gdpr-card-bg: #1F3042;
}

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

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

.page-gdpr__hero-section {
  background: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #0D1826 100%);
  padding: 100px 0 80px;
  text-align: center;
  border-bottom: 2px solid var(--page-gdpr-accent-color);
  position: relative;
  overflow: hidden;
}

.page-gdpr__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  animation: page-gdpr-pulse 15s infinite alternate;
  z-index: 0;
}

@keyframes page-gdpr-pulse {
  0% { transform: scale(1); opacity: 0.1; }
  100% { transform: scale(1.2); opacity: 0.2; }
}

.page-gdpr__hero-title {
  font-size: 3.5em;
  color: var(--page-gdpr-accent-color);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-gdpr__hero-description {
  font-size: 1.2em;
  color: var(--page-gdpr-text-light);
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.page-gdpr__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-gdpr__btn--primary {
  background-color: var(--page-gdpr-accent-color);
  color: var(--page-gdpr-primary-color);
  border: none;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-gdpr__btn--secondary {
  background-color: transparent;
  color: var(--page-gdpr-accent-color);
  border: 2px solid var(--page-gdpr-accent-color);
}

.page-gdpr__btn--secondary:hover {
  background-color: var(--page-gdpr-accent-color);
  color: var(--page-gdpr-primary-color);
  transform: translateY(-3px);
}

.page-gdpr__section {
  padding: 60px 0;
  border-bottom: 1px solid var(--page-gdpr-border-color);
}

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

.page-gdpr__section-title {
  font-size: 2.5em;
  color: var(--page-gdpr-accent-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-gdpr__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-gdpr-accent-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-gdpr__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px;
  color: var(--page-gdpr-text-light);
}

.page-gdpr__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-gdpr__content-grid .page-gdpr__text-block {
  flex: 1;
}

.page-gdpr__content-grid .page-gdpr__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-gdpr__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-gdpr__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0; /* Slightly lighter for readability */
}

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

.page-gdpr__principle-item {
  background-color: var(--page-gdpr-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-gdpr-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__principle-heading {
  font-size: 1.5em;
  color: var(--page-gdpr-accent-color);
  margin-bottom: 15px;
}

.page-gdpr__principle-item p {
  color: #CCCCCC;
  font-size: 0.95em;
}

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

.page-gdpr__right-card {
  background-color: var(--page-gdpr-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-gdpr-border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__right-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-gdpr__right-title {
  font-size: 1.4em;
  color: var(--page-gdpr-accent-color);
  margin-bottom: 10px;
}

.page-gdpr__right-card p {
  color: #CCCCCC;
  font-size: 0.95em;
}

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

.page-gdpr__feature-item {
  background-color: var(--page-gdpr-card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-gdpr-border-color);
}

.page-gdpr__feature-heading {
  font-size: 1.4em;
  color: var(--page-gdpr-accent-color);
  margin-bottom: 15px;
}

.page-gdpr__feature-item p {
  color: #CCCCCC;
  font-size: 0.95em;
}

.page-gdpr__sub-title {
  font-size: 1.8em;
  color: var(--page-gdpr-accent-color);
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-gdpr__cookie-list {
  list-style: disc;
  padding-left: 40px;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #E0E0E0;
}

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

.page-gdpr__cookie-list strong {
  color: var(--page-gdpr-accent-color);
}

.page-gdpr__contact-info {
  text-align: center;
  margin-top: 40px;
}

.page-gdpr__contact-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-gdpr__final-note {
  text-align: center;
  margin-top: 50px;
  font-style: italic;
  color: #AAAAAA;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gdpr__hero-title {
    font-size: 2.8em;
  }
  .page-gdpr__section-title {
    font-size: 2em;
  }
  .page-gdpr__content-grid {
    flex-direction: column;
  }
  .page-gdpr__principle-list,
  .page-gdpr__rights-grid,
  .page-gdpr__security-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-gdpr__hero-title {
    font-size: 2.2em;
  }
  .page-gdpr__hero-description {
    font-size: 1em;
  }
  .page-gdpr__section-title {
    font-size: 1.8em;
  }
  .page-gdpr__section-subtitle {
    font-size: 0.95em;
  }
  .page-gdpr__principle-heading,
  .page-gdpr__right-title,
  .page-gdpr__feature-heading {
    font-size: 1.3em;
  }
  .page-gdpr__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .page-gdpr__hero-title {
    font-size: 1.8em;
  }
  .page-gdpr__hero-section {
    padding: 80px 0 60px;
  }
  .page-gdpr__section {
    padding: 40px 0;
  }
  .page-gdpr__principle-list,
  .page-gdpr__rights-grid,
  .page-gdpr__security-features {
    grid-template-columns: 1fr;
  }
  .page-gdpr__cookie-list {
    padding-left: 20px;
  }
}