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

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: "Lato", 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: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-content h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cookie-content p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.cookie-buttons button {
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #1e88e5;
  color: #fff;
}

.btn-primary:hover {
  background: #1565c0;
}

.btn-secondary {
  background: #42a5f5;
  color: #fff;
}

.btn-secondary:hover {
  background: #1e88e5;
}

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

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

.nav-logo a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
}

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

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

.nav-menu a:hover {
  color: #42a5f5;
}

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

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

.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 {
  background: linear-gradient(135deg, #0a1a3a 0%, #1a2f5a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero-text h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-text p {
  color: #b8c5d6;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.btn-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  background: #fff;
  color: #0a1a3a;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.btn-cta:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.hero-image {
  text-align: center;
}

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

/* Statistics Section */
.stats {
  background: #0a1a3a;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  color: #fff;
}

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

.stat-text {
  font-size: 16px;
  color: #b8c5d6;
}

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

.about h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-intro {
  color: #b8c5d6;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-mission {
  color: #b8c5d6;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Modules Section */
.modules {
  background: #0a1a3a;
  padding: 80px 0;
}

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

.module-card {
  background: #1e88e5;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}

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

.module-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-icon::before {
  content: "⚡";
  font-size: 24px;
}

.module-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.module-card p {
  font-size: 14px;
  line-height: 1.5;
}

.modules-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.modules-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Trust Section */
.trust {
  background: #f8f9fa;
  padding: 80px 0;
}

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

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

.trust-text h2 {
  color: #0a1a3a;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
}

.trust-text > p {
  color: #333;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.trust-benefits h3 {
  color: #0a1a3a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.trust-benefits ul {
  list-style: none;
  margin-bottom: 25px;
}

.trust-benefits li {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.trust-benefits li::before {
  content: "•";
  color: #1e88e5;
  font-size: 20px;
  position: absolute;
  left: 0;
}

.trust-mission {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
}

/* Learning Cards Section */
.learning-cards {
  background: #0a1a3a;
  padding: 80px 0;
}

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

.learning-card {
  background: #1a2f5a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

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

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

.card-content {
  padding: 25px;
  color: #fff;
  text-align: center;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #42a5f5;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon::before {
  content: "📚";
  font-size: 20px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #b8c5d6;
}

/* Reviews Section */
.reviews {
  background: #0a1a3a;
  padding: 80px 0;
}

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

.review-card {
  background: transparent;
  border: 2px solid #1e88e5;
  padding: 30px;
  border-radius: 8px;
  color: #fff;
  text-align: left;
}

.review-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  font-weight: 700;
  color: #42a5f5;
  text-align: right;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
  padding: 80px 0;
  text-align: center;
}

.contact-header h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
}

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

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

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid transparent;
  border-radius: 25px;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  background: #fff;
  border-color: #0a1a3a;
}

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

.btn-submit {
  background: #fff;
  color: #1e88e5;
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Lato", sans-serif;
}

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

/* Footer */
.footer {
  background: #0a1a3a;
  padding: 40px 0;
  color: #fff;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.contact-icon {
  font-size: 16px;
}

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

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

.footer-links a:hover {
  color: #42a5f5;
}

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

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

  .modules-images {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #0a1a3a;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: 0.3s;
    z-index: 999;
  }

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

  .nav-menu li {
    margin: 20px 0;
  }

  .hero-text h1 {
    font-size: 36px;
  }

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

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

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

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

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

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

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

  .hero {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .btn-cta {
    padding: 12px 25px;
    font-size: 14px;
  }

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

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

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

  .cookie-buttons button {
    width: 200px;
  }
}
