.policy,
.success {
  padding-block: 130px 60px;
  min-height: 92vh;
}

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;

  margin-bottom: 30px;
}

.policy__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 14px;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__link {
  color: #fff;
}

h1,
h2,
h3,
h4 {
  word-break: break-word;
}

html {
  scroll-behavior: smooth;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding-inline: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "K2D", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e3a5f;
  color: white;
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border: 1px solid #b9d7f0;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cookie-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cookie-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-accept {
  background: white;
  color: #1e3a5f;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-customize {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-learn-more {
  background: transparent;
  color: white;
  border: none;
  padding: 12px 25px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.btn-accept:hover,
.btn-customize:hover,
.btn-learn-more:hover {
  opacity: 0.8;
}

/* Header */
.header {
  background: #e8f0ff;
  padding: 15px 0;
  position: relative;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;

  gap: 6px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 32px;
  color: #1e3a5f;
  text-decoration: none;
}

.logo--footer {
  color: #fff;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-list a {
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #007bff;
}

.contact-btn {
  background: transparent;
  color: #1e3a5f;
  border: 2px solid #1e3a5f;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #1e3a5f;
  color: white;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: #1e3a5f;
  transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1e3a5f;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

.mobile-nav-list li {
  margin: 30px 0;
}

.mobile-nav-list a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: #1e3a5f;
  color: white;
  padding: 80px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.google-play-btn {
  display: inline-block;
  margin-top: 30px;
}

.google-play-btn img {
  height: 60px;
  transition: transform 0.3s ease;
}

.google-play-btn:hover img {
  transform: scale(1.05);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* About Section */
.about {
  background: #1e3a5f;
  color: white;
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.features-list {
  list-style: none;
  margin: 30px 0;
}

.features-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

/* World Section */
.world {
  background: #1e3a5f;
  color: white;
  padding: 80px 0;
}

.world-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.world-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.world-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.world-features {
  list-style: none;
  margin: 30px 0;
}

.world-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.world-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

.world-images img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Why Choose Section */
.why-choose {
  background: #e8f0ff;
  padding: 80px 0;
}

.why-choose h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1e3a5f;
}

.why-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #1e3a5f;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
}

.feature-card.light {
  background: #f8fbff;
  color: #1e3a5f;
}

.feature-card.dark {
  background: #1e3a5f;
  color: white;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-card p {
  font-size: 1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Testimonials */
.testimonials {
  background: #e8f0ff;
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial {
  background: #1e3a5f;
  color: white;
  padding: 30px;
  border-radius: 15px;
}

.testimonial h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00d4ff;
}

.testimonial p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  background: #1e3a5f;
  color: white;
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "K2D", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
}

.submit-btn {
  background: white;
  color: #1e3a5f;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "K2D", sans-serif;
}

.submit-btn:hover {
  background: #00d4ff;
  color: white;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Footer */
.footer {
  background: #1e3a5f;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav,
  .contact-btn {
    display: none;
  }

  .hero-content,
  .about-content,
  .world-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .about-text h2,
  .world-text h2 {
    font-size: 1.8rem;
  }

  .why-choose h2 {
    font-size: 2rem;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cookie-content h3 {
    font-size: 1.2rem;
  }

  .cookie-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero,
  .about,
  .world,
  .why-choose,
  .contact {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p,
  .about-text p,
  .world-text p {
    font-size: 1rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .testimonial {
    padding: 20px;
  }

  .google-play-btn img {
    height: 50px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text,
.about-text,
.world-text {
  animation: fadeInUp 0.8s ease;
}

.feature-card,
.testimonial {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
