:root {
  --primary-color: #E53935;
  --secondary-color: #FF5A4F;
  --button-gradient: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  --card-bg: #FFFFFF;
  --body-bg-default: #F5F7FA;
  --text-main: #333333;
  --border-color: #E0E0E0;
}

.page-privacy-policy {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main); /* Default text color for light background */
  background-color: var(--body-bg-default);
  line-height: 1.6;
}

.page-privacy-policy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  background-color: var(--primary-color);
  color: #ffffff;
  overflow: hidden;
}

.page-privacy-policy__hero-image {
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
}

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

.page-privacy-policy__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-privacy-policy__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-privacy-policy__description {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-privacy-policy__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-privacy-policy__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__btn-secondary:hover {
  transform: translateY(-2px);
  background: #f0f0f0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__section {
  padding: 60px 20px;
  background-color: var(--body-bg-default);
}

.page-privacy-policy__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-privacy-policy__section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.page-privacy-policy__text-block {
  background-color: var(--card-bg);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  line-height: 1.7;
}

.page-privacy-policy__text-block p {
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--text-main);
}

.page-privacy-policy__text-block strong {
  color: var(--primary-color);
}

.page-privacy-policy__list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-main);
}

.page-privacy-policy__list li {
  margin-bottom: 10px;
}

.page-privacy-policy__image-wrapper {
  margin: 30px 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-privacy-policy__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy__contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
  font-size: 17px;
  color: var(--text-main);
}

.page-privacy-policy__contact-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.page-privacy-policy__contact-list li strong {
  margin-right: 10px;
  min-width: 100px;
}

.page-privacy-policy__contact-list a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-privacy-policy__contact-list a:hover {
  text-decoration: underline;
}

.page-privacy-policy__faq-section {
  margin-top: 40px;
}