/* Базовий CSS reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  text-rendering: optimizeSpeed;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ----------- */

/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;800&display=swap');

:root {
  --color-primary: #3E64FF;
  --color-secondary: #F9A826;
  --color-bg: #F4F6FA;
  --color-text: #1C1C1E;
  --color-muted: #6B7280;

  --font-main: 'Urbanist', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary);
}

button {
  font-family: inherit;
  background-color: var(--color-secondary);
  border: none;
  padding: 0.75rem 1.5rem;
  color: white;
  cursor: pointer;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #d88c17;
  transform: translateY(-2px);
}
.header {
  background-color: white;
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.header__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 1px;
}

.header__nav {}

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

.header__link {
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s ease;
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s;
}

.header__link:hover::after {
  width: 100%;
}
.footer {
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-top: 1px solid #e5e7eb;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
}

.footer__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.footer__list {
  list-style: none;
  padding: 0;
}

.footer__list li {
  margin-bottom: 0.6rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer__list a {
  color: var(--color-muted);
  transition: color 0.3s;
}

.footer__list a:hover {
  color: var(--color-primary);
}
.hero {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #e0f7fa, #f8f9fa);
}

.hero__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

.hero__text {
  flex: 1 1 480px;
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text);
  animation: fadeInDown 1s ease forwards;
}

.hero__highlight {
  color: var(--color-primary);
  position: relative;
}

.hero__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: var(--color-accent);
  border-radius: 3px;
  animation: slideIn 1s ease forwards;
}

.hero__desc {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  color: var(--color-muted);
  animation: fadeInUp 1.2s ease forwards;
}

.hero__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
  animation: fadeInUp 1.4s ease forwards;
}

.hero__btn:hover {
  background-color: var(--color-accent);
}

.hero__img {
  flex: 1 1 400px;
  text-align: center;
  animation: fadeInRight 1.5s ease forwards;
}

.hero__img img {
  max-width: 100%;
  border-radius: 12px;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideIn {
  0% { width: 0; }
  100% { width: 100%; }
}
.advantages {
  padding: 5rem 2rem;
  background-color: #ffffff;
}

.advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.advantages__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-text);
}

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

.advantages__item {
  background-color: #f0f4f8;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.advantages__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantages__item i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.advantages__item-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.advantages__item-desc {
  font-size: 1rem;
  color: var(--color-muted);
}

.programs {
  padding: 5rem 2rem;
  background-color: #f9fbfc;
}

.programs__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.programs__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-text);
}

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

.programs__card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e1e7ed;
  transition: transform 0.3s, box-shadow 0.3s;
}

.programs__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.programs__name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.programs__desc {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 1rem;
  min-height: 60px;
}

.programs__duration {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.programs__btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.programs__btn:hover {
  background-color: var(--color-primary-dark);
}
.how-it-works {
  background-color: #fff;
  padding: 5rem 2rem;
}

.how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
  color: var(--color-text);
}

.how-it-works__timeline {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow-x: auto;
  gap: 2rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.how-it-works__step {
  flex: 0 0 250px;
  background-color: #f4f9ff;
  border-radius: 1rem;
  padding: 2rem 1rem;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.how-it-works__step:hover {
  transform: translateY(-6px);
}

.how-it-works__circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 1rem;
}

.how-it-works__subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.how-it-works__desc {
  font-size: 0.95rem;
  color: var(--color-muted);
}
.cta {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta__container {
  max-width: 900px;
  margin: 0 auto;
}

.cta__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease-in-out forwards;
  color: #333;
}

.cta__desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.7s ease-in-out forwards;
  color: #333;

}

.cta__btn {
  display: inline-block;
  background-color: #fff;
  color: var(--color-primary);
  padding: 0.9rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-in-out forwards;
}

.cta__btn:hover {
  background-color: #f7f7f7;
  transform: translateY(-2px);
}

/* Анімація */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.about__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.about__subtitle {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--color-accent);
  animation: fadeInUp 0.6s ease;
}

.about__text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #444;
  animation: fadeInUp 0.7s ease;
}

.about__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
  animation: fadeInUp 0.8s ease;
}

.about__item {
  background-color: #f7f7f7;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.about__map {
  max-width: 100%;
  border-radius: 1rem;
  margin-top: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

/* Анімація */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.courses__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.courses__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s ease;
}

.courses__text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  color: #555;
  font-size: 1.1rem;
  animation: fadeInUp 0.6s ease;
}

.courses__track {
  background: #f8f8f8;
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.7s ease;
}

.courses__track:hover {
  transform: translateY(-6px);
}

.courses__track-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

.courses__track-line {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-weight: 500;
  margin-bottom: 1rem;
}

.courses__track-line span {
  background: var(--color-accent-light);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.courses__track-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.courses__cta {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.courses__cta:hover {
  background: var(--color-accent-dark);
}

.courses__subtitle {
  font-size: 2rem;
  text-align: center;
  margin: 3rem 0 1rem;
}

.courses__steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

.courses__steps li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.courses__steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  width: 1.8rem;
  height: 1.8rem;
  text-align: center;
  line-height: 1.8rem;
  border-radius: 50%;
  font-size: 0.9rem;
}
.contact__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.contact__title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s ease;
}

.contact__text {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.contact__form {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 0.6s ease;
}

.contact__input-group {
  margin-bottom: 1.5rem;
}

.contact__input-group label {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.contact__input-group input,
.contact__input-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.contact__captcha {
  margin-bottom: 1.5rem;
}

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

.contact__captcha input {
  width: 60px;
  padding: 0.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
}

.contact__submit-btn {
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}


.contact__success-message {
  padding: 1.5rem;
  background: #d4edda;
  border-radius: 1rem;
  border: 1px solid #c3e6cb;
  color: #155724;
  font-size: 1.1rem;
  text-align: center;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  display: none;
  z-index: 9999;
}

.cookie-popup__content {
  max-width: 800px;
  margin: 0 auto;
}

.cookie-popup__text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.cookie-popup__btn {
  background-color: #4CAF50;
  color: white;
  font-size: 1.1rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-popup__btn:hover {
  background-color: #45a049;
}
.pages {
  padding: 3rem 0;
  background-color: #f9f9f9;
}

.pages .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pages h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
}

.pages h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #444;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.pages p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.pages ul {
  list-style-type: none;
  padding-left: 0;
}

.pages ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.pages ul li strong {
  color: #333;
}

.pages a {
  color: #4caf50;
  text-decoration: none;
}

.pages a:hover {
  text-decoration: underline;
}

.pages .container a {
  font-weight: 600;
}

@media (max-width: 768px) {
  .pages h1 {
    font-size: 2rem;
  }

  .pages h2 {
    font-size: 1.5rem;
  }

  .pages p {
    font-size: 0.95rem;
  }

  .pages ul li {
    font-size: 0.95rem;
  }
}
