.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__link {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.highlight {
  color: #ffa500;
}

/* Buttons */
.btn-primary,
.btn-submit,
.btn-cookie {
  background: linear-gradient(135deg, #ffa500, #ff8c00);
  color: #000;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-submit:hover,
.btn-cookie:hover {
  background: linear-gradient(135deg, #ff8c00, #ff7700);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  padding: 30px;
  z-index: 10000;
  border-top: 1px solid rgba(255, 165, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-content h3 {
  font-size: 1.8rem;
  color: #ffa500;
  margin-bottom: 15px;
}

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

/* Header */
.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffa500;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffa500;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffa500;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.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);
}

/* Main Section */
.main {
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 165, 0, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-sub {
  font-size: 1rem !important;
  opacity: 0.8 !important;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #0a0a0a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.feature-item {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: left;
  border: 1px solid rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ffa500, #ff8c00);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2);
  border-color: rgba(255, 165, 0, 0.4);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffa500, #ff8c00);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.feature-item h3 {
  color: #ffa500;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-item p {
  line-height: 1.6;
  opacity: 0.9;
}

/* Content Section */
.content-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.content-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #ffa500;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.content-item {
  background: rgba(26, 26, 46, 0.6);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 165, 0, 0.2);
  transition: all 0.3s ease;
}

.content-item:hover {
  transform: translateY(-3px);
  background: rgba(26, 26, 46, 0.8);
  border-color: rgba(255, 165, 0, 0.4);
}

.content-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffa500, #ff8c00);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.content-icon img {
  width: 25px;
  height: 25px;
  filter: invert(1);
}

.content-item h3 {
  color: #ffa500;
  margin-bottom: 1rem;
}

/* Start Section */
.start-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.start-content h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffa500;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.start-item {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 165, 0, 0.2);
}

.start-item h4 {
  color: #ffa500;
  margin-bottom: 1rem;
}

/* Conclusion Section */
.conclusion {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
}

.conclusion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.conclusion-text h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #ffa500;
}

.conclusion-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.conclusion-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2);
}

/* Registration Form */
.registration {
  padding: 100px 0;
  background: #0a0a0a;
}

.registration-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 15px 20px;
  background: rgba(26, 26, 46, 0.8);
  border: 2px solid rgba(255, 165, 0, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #ffa500;
  background: rgba(26, 26, 46, 1);
  box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn-submit {
  padding: 18px 30px;
  font-size: 1rem;
  margin-top: 1rem;
  justify-self: center;
  min-width: 200px;
}

/* Footer */
.footer {
  background: #000000;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 165, 0, 0.3);
}

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

.footer-logo h3 {
  color: #ffa500;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

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

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

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

.footer-bottom p {
  opacity: 0.6;
  margin: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    padding: 2rem;
  }

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

  .nav-list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav-list a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .btn-primary {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .conclusion-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .start-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .cookie-content {
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .feature-item,
  .content-item,
  .start-item {
    padding: 1.5rem;
  }

  .main,
  .features,
  .content-section,
  .start-section,
  .conclusion,
  .registration {
    padding: 60px 0;
  }
}

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

.hero-content,
.feature-item,
.content-item {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll reveal effect */
@media (prefers-reduced-motion: no-preference) {
  .feature-item,
  .content-item,
  .start-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
  }

  .feature-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .feature-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  .feature-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  .feature-item:nth-child(4) {
    animation-delay: 0.4s;
  }
}
