.policy,
.success,
.contact-section {
  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;
}

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: "Lato", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #2d1b4e 0%, #1a0f2e 50%, #0f0520 100%);
  min-height: 100vh;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-popup.show {
  opacity: 1;
  visibility: visible;
}

.cookie-content {
  background: #ffffff;
  color: #333;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  text-align: left;
}

.cookie-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #666;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.btn-accept,
.btn-refuse {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-accept {
  background: #2d1b4e;
  color: white;
}

.btn-accept:hover {
  background: #3d2b5e;
}

.btn-refuse {
  background: #6b46c1;
  color: white;
}

.btn-refuse:hover {
  background: #553c9a;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(45, 27, 78, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand a {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

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

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #a855f7;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.2;
}

.hero-visual {
  margin: 40px 0;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
}

.hero-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #2d1b4e;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.arrow {
  font-size: 18px;
}

/* About Section */
.about {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.05);
}

.section-title {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
}

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

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #a855f7;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.4;
}

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

.module-card {
  background: rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.module-card:hover {
  transform: translateY(-5px);
}

.module-icon {
  margin-bottom: 20px;
}

.module-icon img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.module-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.module-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Prepare Section */
.prepare {
  padding: 80px 0;
}

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

.prepare-text h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 30px;
}

.prepare-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.9;
}

.prepare-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

.prepare-text li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  opacity: 0.9;
}

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

/* Additional Modules */
.additional-modules {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.05);
}

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

.module-card-large {
  background: rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.module-card-large:hover {
  transform: translateY(-5px);
}

.module-image {
  height: 200px;
  overflow: hidden;
}

.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.module-card-large .module-content {
  padding: 25px;
}

.module-card-large .module-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.module-card-large .module-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #6b46c1 0%, #a855f7 100%);
}

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

.contact h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 30px;
}

.contact p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.form-group input::placeholder {
  color: #666;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffffff;
  color: #6b46c1;
  padding: 16px 32px;
  border: none;
  border-radius: 25px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 10px;
}

.submit-button:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  padding: 40px 0;
  background: rgba(0, 0, 0, 0.3);
}

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

.footer-brand h3 {
  font-size: 24px;
  font-weight: 700;
}

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

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

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(45, 27, 78, 0.98);
    transition: left 0.3s ease;
    padding: 50px 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .nav-link {
    font-size: 18px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 14px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .stats {
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-text {
    font-size: 12px;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .prepare-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .modules-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .about,
  .prepare,
  .additional-modules,
  .contact {
    padding: 60px 0;
  }

  .section-title,
  .prepare-text h2,
  .contact h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .cta-button,
  .submit-button {
    padding: 14px 24px;
    font-size: 14px;
  }

  .module-card,
  .module-card-large .module-content {
    padding: 20px;
  }

  .cookie-content {
    padding: 30px 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

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