* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #1a1c2c, #2d3448);
  color: #e6e6fa;
  line-height: 1.8;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: linear-gradient(90deg, #2e3a59, #4a6fa5);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 70px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-link {
  color: #e6e6fa;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: #7fb3ff;
  transform: translateY(-2px);
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 7px;
}

.burger-line {
  width: 34px;
  height: 5px;
  background: #e6e6fa;
  transition: all 0.3s ease;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #34c759;
  color: #fff;
}

.btn-primary:hover {
  background: #2ba644;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.privacy-policy {
  padding: 7rem 0;
  background: linear-gradient(to bottom, #2d3448, #1a1c2c);
}

.privacy-policy h1 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #e6e6fa;
  animation: fadeIn 1.2s ease-in;
}

.intro-text {
  font-size: 1.4rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: #d4d4d8;
}

.policy-section {
  background: #2e3a59;
  padding: 2.5rem;
  border-radius: 14px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
  font-size: 2.2rem;
  color: #7fb3ff;
  margin-bottom: 1.5rem;
}

.policy-section p {
  font-size: 1.2rem;
  color: #d4d4d8;
  margin-bottom: 1rem;
}

.policy-list {
  list-style: none;
  padding-left: 20px;
}

.policy-list li {
  font-size: 1.2rem;
  color: #d4d4d8;
  margin-bottom: 0.8rem;
  position: relative;
}

.policy-list li::before {
  content: "•";
  color: #7fb3ff;
  position: absolute;
  left: -20px;
}

.section-img {
  max-width: 800px;
  display: block;
  margin: 2rem auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.section-img:hover {
  transform: scale(1.06);
}

.contact-info {
  font-size: 1.2rem;
  color: #d4d4d8;
  margin: 1.5rem 0;
}

.footer {
  background: #2e3a59;
  color: #e6e6fa;
  padding: 4rem 0;
  text-align: center;
}

.footer-logo {
  height: 65px;
  margin-bottom: 2rem;
}

.footer-nav {
  margin: 2rem 0;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.footer-link {
  color: #7fb3ff;
  text-decoration: none;
  font-size: 1.1rem;
}

.footer-link:hover {
  color: #e6e6fa;
}

.footer-copy {
  margin-top: 2rem;
  font-size: 1rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .main-nav .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #2e3a59;
    padding: 2.5rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  }

  .main-nav .nav-list.active {
    display: flex;
  }

  .burger-menu {
    display: flex;
  }

  .privacy-policy h1 {
    font-size: 2.8rem;
  }

  .intro-text {
    font-size: 1.2rem;
  }

  .policy-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy {
    padding: 5rem 20px;
  }

  .privacy-policy h1 {
    font-size: 2.2rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .policy-section {
    padding: 2rem;
  }

  .policy-section p,
  .policy-list li,
  .contact-info {
    font-size: 1.1rem;
  }
}
