﻿.privacy-policy {
  padding: 80px 0;
  background: var(--bg-color);
}

.privacy-policy__wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-policy__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 20px;
}

.privacy-policy__title i {
  color: var(--highlight-color);
  margin-right: 15px;
}

.privacy-policy__intro {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
  text-align: center;
}

.policy-section {
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.policy-section:nth-child(2) { animation-delay: 0.1s; }
.policy-section:nth-child(3) { animation-delay: 0.2s; }
.policy-section:nth-child(4) { animation-delay: 0.3s; }
.policy-section:nth-child(5) { animation-delay: 0.4s; }
.policy-section:nth-child(6) { animation-delay: 0.5s; }
.policy-section:nth-child(7) { animation-delay: 0.6s; }

.policy-section h2 {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.6rem;
  color: var(--main-color);
  margin-bottom: 15px;
}

.policy-section p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 15px;
}

.policy-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.policy-section li {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

.policy-section a {
  color: var(--accent-color);
  text-decoration: none;
}

.policy-section a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .privacy-policy {
    padding: 60px 0;
  }

  .privacy-policy__title {
    font-size: 2.2rem;
  }

  .policy-section h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy__title {
    font-size: 1.8rem;
  }

  .privacy-policy__intro {
    font-size: 1rem;
  }
}

.terms-conditions {
  padding: 80px 0;
  background: var(--bg-color);
}

.terms-conditions__wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.terms-conditions__title {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 3rem;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 20px;
}

.terms-conditions__title i {
  color: var(--highlight-color);
  margin-right: 15px;
}

.terms-conditions__intro {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 40px;
  text-align: center;
}

.terms-section {
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.terms-section:nth-child(2) { animation-delay: 0.1s; }
.terms-section:nth-child(3) { animation-delay: 0.2s; }
.terms-section:nth-child(4) { animation-delay: 0.3s; }
.terms-section:nth-child(5) { animation-delay: 0.4s; }
.terms-section:nth-child(6) { animation-delay: 0.5s; }
.terms-section:nth-child(7) { animation-delay: 0.6s; }

.terms-section h2 {
  font-family: 'Bubblegum Sans', cursive;
  font-size: 1.6rem;
  color: var(--main-color);
  margin-bottom: 15px;
}

.terms-section p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 15px;
}

.terms-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.terms-section li {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

.terms-section a {
  color: var(--accent-color);
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .terms-conditions {
    padding: 60px 0;
  }

  .terms-conditions__title {
    font-size: 2.2rem;
  }

  .terms-section h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .terms-conditions__title {
    font-size: 1.8rem;
  }

  .terms-conditions__intro {
    font-size: 1rem;
  }
}
