:root {
  --primary-color: #E50914;
  --primary-dark: #B20710;
  --primary-light: #FF3D47;
  --secondary-color: #333333;
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --background-color: #FFFFFF;
  --background-alt: #F8F8F8;
  --border-color: #E0E0E0;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --transition-speed: 0.3s;
}

 

/* Page Title */
.page-title {
  background-color: var(--background-alt);
  padding: 40px 0;
  margin-bottom: 40px;
  text-align: center;
}

.page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.page-title p {
  color: var(--text-color);
  font-size: 1rem;
}

/* Policy Container */
.policy-container {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.policy-content {
  flex: 1;
}

.policy-section {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ul {
  margin: 15px 0 15px 25px;
}

.policy-section ul ul {
  margin-top: 5px;
  margin-bottom: 5px;
}

.policy-section strong {
  font-weight: 600;
}

.contact-info {
  background-color: var(--background-alt);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Print styles */
@media print {
  .container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .policy-container {
    display: block;
  }

  .policy-content {
    width: 100%;
  }

  .page-title {
    padding: 20px 0;
    margin-bottom: 20px;
    background-color: transparent;
  }

  h1 {
    font-size: 18pt;
  }

  h2 {
    font-size: 16pt;
  }

  a {
    text-decoration: none;
    color: #000;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .policy-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-title {
    padding: 30px 0;
    margin-bottom: 30px;
  }

  .page-title h1 {
    font-size: 2rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .policy-section {
    margin-bottom: 30px;
  }
}