.policy,
.success {
  padding-block: 90px 60px !important;
  min-height: 92vh;
}

@media (max-width: 768px) {
  .policy {
    padding-block: 80px 60px !important;
  }
}

.success__text {
  margin-bottom: 27px;
}

/* .success__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
} */

.success__text ul {
  padding-left: 20px;
}

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

.policy__title,
.success__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 26px;
  color: #000000;
}

.policy__title {
  color: #000000;
}

.policy__text h2 {
  text-align: left;

  font-size: 21px;
}

.policy__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #000000;
}

.policy__text h2,
.policy__text p {
  text-align: left;
  color: #000000;
}

.policy__text ul {
  padding-left: 20px;
}

.policy__text h2,
.policy__text p,
.policy__text ul {
  margin-bottom: 22px;
}

.policy__link {
  color: #1b1b1b;
}

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

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Gilroy", "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

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

.cookie-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.cookie-popup__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #3d3d3d;
  color: #fff;
  padding: 40px 30px;
  max-width: 100%;
}

.cookie-popup__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cookie-popup__text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #fff;
}

.cookie-popup__buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.cookie-popup__button {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Gilroy", sans-serif;
  letter-spacing: 0.5px;
}

.cookie-popup__button--accept {
  background: #e07856;
  color: #fff;
}

.cookie-popup__button--accept:hover {
  background: #d06745;
}

.cookie-popup__button--learn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-popup__button--learn:hover {
  background: #fff;
  color: #3d3d3d;
}

/* Header */
.header {
  background: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav__link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #e07856;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.burger__line {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url("../img/hero-bg-ce.png") center / cover no-repeat;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__title {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.3;
}

.hero__text {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 15px;
}

.hero__button {
  display: inline-block;
  background: #e07856;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.hero__button:hover {
  background: #d06745;
}

.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Programs Section */
.programs {
  padding: 80px 0;
  background: #fff;
}

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

.programs__image img {
  width: 100%;
  height: auto;
  display: block;
}

.programs__title {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.programs__text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.programs__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.programs__list {
  list-style: none;
  margin-bottom: 20px;
}

.programs__list-item {
  font-size: 16px;
  color: #666;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.programs__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e07856;
  font-weight: 700;
}

.programs__button {
  display: inline-block;
  background: #e07856;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.programs__button:hover {
  background: #d06745;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f5f5f0;
}

.testimonials__title {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonials__item {
  background: #fff;
  padding: 30px;
}

.testimonials__text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.testimonials__author {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f5f5f0;
}

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

.about__title {
  font-size: 38px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about__text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.about__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.about__list {
  list-style: none;
  margin-bottom: 20px;
}

.about__list-item {
  font-size: 16px;
  color: #666;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.about__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e07856;
  font-weight: 700;
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Courses Section */
.courses {
  padding: 80px 0;
  background: #fff;
}

.courses__main-title {
  font-size: 44px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.courses__item {
  background: #f5f5f0;
  padding: 40px;
}

.courses__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.courses__subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #666;
  margin-bottom: 20px;
}

.courses__description {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.courses__topics-title {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.courses__topics-list {
  list-style: none;
  margin-bottom: 25px;
}

.courses__topics-item {
  font-size: 15px;
  color: #666;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.courses__topics-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e07856;
  font-weight: 700;
}

.courses__button {
  display: inline-block;
  background: transparent;
  color: #8b4513;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: 2px solid #8b4513;
  transition: all 0.3s ease;
}

.courses__button:hover {
  background: #8b4513;
  color: #fff;
}

/* Approach Section */
.approach {
  padding: 80px 0;
  background: #f5f5f0;
}

.approach__main-title {
  font-size: 44px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.approach__intro {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 25px;
}

.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.approach__item {
  background: #fff;
  padding: 40px;
}

.approach__title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.approach__text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

.approach__subtitle {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.approach__list {
  list-style: none;
}

.approach__list-item {
  font-size: 15px;
  color: #666;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.approach__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e07856;
  font-weight: 700;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #fff;
}

.contact__main-title {
  font-size: 44px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
}

.contact__intro {
  font-size: 17px;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 40px;
}

.contact__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.contact__text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact__link {
  font-size: 16px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: #e07856;
}

.contact__address {
  font-size: 16px;
  color: #666;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  font-family: "Gilroy", sans-serif;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease;
}

.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: #e07856;
}

.contact__textarea {
  resize: vertical;
  min-height: 150px;
}

.contact__button {
  background: #e07856;
  color: #fff;
  padding: 15px 40px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: "Gilroy", sans-serif;
}

.contact__button:hover {
  background: #d06745;
}

.contact__map img {
  width: 100%;
  height: auto;
  display: block;
}

/* Footer */
.footer {
  background: #3d3d3d;
  padding: 30px 0;
  color: #fff;
}

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

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

.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #e07856;
}

.footer__copyright {
  font-size: 13px;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero .container,
  .programs__inner,
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials__grid,
  .courses__grid,
  .approach__grid {
    grid-template-columns: 1fr;
  }

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

  .hero__title,
  .approach__main-title,
  .contact__main-title {
    font-size: 36px;
  }

  .programs__title,
  .about__title,
  .testimonials__title {
    font-size: 32px;
  }

  .courses__main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    transition: left 0.3s ease;
    padding: 40px 20px;
  }

  .nav.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 25px;
  }

  .nav__link {
    font-size: 18px;
  }

  .burger {
    display: flex;
  }

  .hero {
    padding: 60px 0;
  }

  .hero__title {
    font-size: 32px;
  }

  .programs,
  .testimonials,
  .about,
  .courses,
  .approach,
  .contact {
    padding: 60px 0;
  }

  .programs__title,
  .about__title,
  .testimonials__title {
    font-size: 28px;
  }

  .courses__main-title,
  .approach__main-title,
  .contact__main-title {
    font-size: 28px;
  }

  .cookie-popup__content {
    padding: 30px 20px;
  }

  .cookie-popup__title {
    font-size: 24px;
  }

  .cookie-popup__text {
    font-size: 14px;
  }

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

  .footer__nav {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 26px;
  }

  .programs__title,
  .about__title,
  .testimonials__title,
  .courses__main-title,
  .approach__main-title,
  .contact__main-title {
    font-size: 24px;
  }

  .courses__title {
    font-size: 22px;
  }

  .approach__title,
  .contact__title {
    font-size: 22px;
  }

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

  .cookie-popup__button {
    width: 100%;
  }
}
