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

.success__text {
  margin-bottom: 30px;
}

.policy__title,
.success__title {
  color: #fff;

  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%;
  color: #fff;
}

.policy__title {
  color: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #0a1428;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #1e40af;
  border: 2px solid #1e40af;
}

.btn-secondary:hover {
  background: #1e40af;
  color: white;
}

.btn-outline {
  background: #1e40af;
  color: white;

  border: 2px solid #1e40af;
  padding: 8px 16px;
  font-size: 12px;
}

.btn-outline:hover {
  background: #1e40af;
  color: white;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  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: white;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  text-align: center;
  margin: 20px;
}

.cookie-content h3 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #0a1428;
}

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

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

/* Header */
.header {
  background: linear-gradient(135deg, #0a1428, #1e40af);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo a {
  font-size: 24px;
  font-weight: 900;
  color: white;
  text-decoration: none;
}

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

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

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

.burger-menu span {
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a1428, #1e40af, #7c3aed);
  padding: 120px 0 80px;
  color: white;
  text-align: center;
}

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

.hero-chart {
  margin: 40px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0.9;
}

/* About Section */
.about {
  background: #0a1428;
  padding: 80px 0;
  color: white;
  text-align: center;
}

.about h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
}

.about p {
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.8;
  opacity: 0.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 30px;
  height: 30px;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #60a5fa;
  margin-bottom: 10px;
}

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

/* Courses Section */
.courses {
  background: linear-gradient(135deg, #1e40af, #0a1428);
  padding: 80px 0;
}

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

.course-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-image {
  width: 100%;
  height: 150px;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}

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

.course-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.course-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Plan Section */
.plan {
  background: #0a1428;
  padding: 80px 0;
  color: white;
}

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

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

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

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

/* Services Section */
.services {
  background: linear-gradient(135deg, #1e40af, #7c3aed);
  padding: 80px 0;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
}

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

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Support Section */
.support {
  background: #0a1428;
  padding: 80px 0;
  color: white;
}

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

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

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

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

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

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

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #1e40af, #0a1428);
  padding: 80px 0;
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  font-style: italic;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #7c3aed, #1e40af);
  padding: 80px 0;
  color: white;
  text-align: center;
}

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

.contact p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
  opacity: 0.9;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.contact-form input:focus {
  outline: none;
  border-color: #60a5fa;
}

/* Footer */
.footer {
  background: #0a1428;
  padding: 50px 0;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
  opacity: 0.8;
}

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

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

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

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

  .nav {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(135deg, #0a1428, #1e40af);
    transition: left 0.3s ease;
    padding: 50px 20px;
  }

  .nav.active {
    left: 0;
  }

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

  .nav-list a {
    font-size: 18px;
  }

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .plan-content,
  .support-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .about h2,
  .plan-text h2,
  .support-text h2,
  .contact h2 {
    font-size: 28px;
  }

  .courses-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

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

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

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

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

  .hero h1 {
    font-size: 24px;
  }

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

  .course-card,
  .service-card,
  .testimonial-card {
    padding: 20px;
  }

  .about,
  .courses,
  .plan,
  .services,
  .support,
  .testimonials,
  .contact {
    padding: 60px 0;
  }
}
