.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: "Inter", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #000000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Krona One", monospace;
  font-weight: 400;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Buttons */
.btn-primary {
  background: #1e40ff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #1532cc;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #1e40ff;
  border: 2px solid #1e40ff;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-hero {
  background: #1e40ff;
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
}

.btn-hero:hover {
  background: #1532cc;
  transform: translateY(-2px);
}

.btn-form {
  background: #1e40ff;
  color: white;
  border: none;
  padding: 18px 60px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
}

.btn-form:hover {
  background: #1532cc;
  transform: translateY(-2px);
}

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

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

.logo {
  font-family: "Krona One", monospace;
  font-size: 24px;
  color: #1e40ff;
  font-weight: 400;
}

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

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

.nav-link:hover {
  color: #1e40ff;
}

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

.bar {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 120px 20px 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  background: #1e40ff;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 30px;
  display: inline-block;
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
}

.section-header p {
  font-size: 18px;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.section-description {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* Courses Section */
.courses {
  padding: 100px 0;
  background: #000000;
}

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

.course-card {
  background: #111111;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.course-image {
  height: 250px;
  overflow: hidden;
}

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

.course-content {
  padding: 30px;
}

.course-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.3;
}

.course-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #000000;
}

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

.about-text h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffffff;
  line-height: 1.3;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #1e40ff;
}

.services .section-header h2,
.services .section-header p {
  color: #ffffff;
}

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

.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

.service-content {
  padding: 30px;
  color: #000000;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.3;
}

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.service-price .label {
  font-weight: 600;
  color: #1e40ff;
}

.service-price .price {
  font-weight: 600;
  color: #000000;
}

.service-tags {
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  background: #f0f0f0;
  color: #1e40ff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin: 2px 5px 2px 0;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
}

/* Contact Form Section */
.contact-form {
  padding: 100px 0;
  background: #000000;
}

.form-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-header h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #ffffff;
}

.form-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

.form-subtitle {
  margin-top: 30px;
  font-style: italic;
}

.contact-form-element {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 18px 20px;
  border: none;
  border-radius: 10px;
  background: #333333;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

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

.form-group input:focus {
  outline: none;
  background: #444444;
  box-shadow: 0 0 0 2px #1e40ff;
}

/* Footer */
.footer {
  background: #1e40ff;
  padding: 40px 0;
  color: #ffffff;
}

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

.footer-info p {
  margin-bottom: 5px;
  font-size: 14px;
}

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content h3 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 15px;
}

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

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

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

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    padding: 20px 0;
  }

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

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

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

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

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

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

  .section-header h2 {
    font-size: 28px;
  }

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

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

  .about-text h2 {
    font-size: 24px;
  }

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

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

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

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

  .cookie-buttons button {
    width: 100%;
  }
}

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

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

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

  .courses,
  .about,
  .services,
  .contact-form {
    padding: 60px 0;
  }

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

  .form-header h2 {
    font-size: 24px;
  }

  .cookie-popup {
    padding: 20px 15px;
  }
}
