/* Privacy Policy Section */
.privacy-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

/* Заголовок секции */
.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: #007bff; /* Голубой акцент */
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Описание секции */
.section-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Контейнер с карточками */
.privacy-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; /* Центрирование карточек */
}

/* Карточка */
.privacy-item {
  flex: 1 1 calc(50% - 2rem); /* 2 карточки на строке */
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover эффект для карточек */
.privacy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Заголовок карточки */
.privacy-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* Текст карточки */
.privacy-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-content {
    flex-direction: column; /* Карточки в колонку */
  }

  .privacy-item {
    flex: 1 1 100%; /* Полная ширина на мобильных */
  }

  .section-heading {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }
}
