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

.success__text {
  margin-bottom: 30px;
}

.success__subtitle {
  font-family: Playfair Display;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
}

@media (min-width: 1200px) {
  .success__subtitle {
    font-size: 32px;
  }
}

.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;
  text-align: left;
}

.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: "Playfair Display", serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

/* Typography */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
}

.btn-primary {
  background-color: #8b5cf6;
  color: white;
}

.btn-primary:hover {
  background-color: #7c3aed;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #8b5cf6;
  color: white;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b5cf6;
  text-decoration: none;
}

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

.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Burger Menu */
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  padding: 1rem 0;
}

.mobile-nav-list li {
  padding: 0.5rem 20px;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: url("../img/hero-bg.png") center / cover no-repeat;
}

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

.hero-text h1 {
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Why Section */
.why-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.feature {
  text-align: center;
  padding: 2rem;
}

.feature h3 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}

.cta-center {
  text-align: center;
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background-color: white;
}

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

.info-item {
  padding: 1.5rem;
}

.info-item h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Courses Section */
.courses-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.course-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.course-card h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.course-card p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.course-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.duration {
  color: #666;
}

.price {
  color: #8b5cf6;
  font-size: 1.3rem;
}

/* Career Section */
.career-section {
  padding: 80px 0;
  background-color: white;
}

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

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

.career-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Locations Section */
.locations-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.locations-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

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

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: white;
}

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

.contact-form {
  margin: 3rem 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Playfair Display", serif;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8b5cf6;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #f8fafc;
  border-radius: 10px;
  text-align: left;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: #8b5cf6;
  font-weight: 500;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  color: white;
  padding: 2rem 0;
}

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

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

.footer-links a {
  color: #8b5cf6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-copyright p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid #e2e8f0;
  padding: 1rem 0;
  z-index: 1001;
  display: none;
}

.cookie-popup.show {
  display: block;
}

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

.cookie-content h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

  .nav {
    display: none;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

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

  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

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

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

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

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

  .career-text {
    order: 2;
    text-align: center;
  }

  .career-image {
    order: 1;
  }

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

  .locations-text {
    text-align: center;
  }

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

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

  .course-info {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

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

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

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .why-section,
  .info-section,
  .courses-section,
  .career-section,
  .locations-section,
  .contact-section {
    padding: 60px 0;
  }

  .course-card,
  .feature,
  .info-item {
    padding: 1.5rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

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

/* Focus Styles for Accessibility */
.btn:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}

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

.hero-content,
.feature,
.course-card,
.info-item {
  animation: fadeInUp 0.6s ease forwards;
}
