﻿@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&family=Nunito:wght@300;400;600&family=Caveat:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');


:root {
  --color-background: #F8F4EE;
  --color-accent: #E27D60;
  --color-secondary: #85DCB0;
  --color-text: #2E2E2E;
  --color-text-light: #5A5A5A;
  --color-white: #FFFFFF;
  
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Caveat', cursive;
  
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-md: 1.125rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: 2.5rem;
  --size-4xl: 3rem;
  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(46, 46, 46, 0.05);
  --shadow-md: 0 2px 4px rgba(46, 46, 46, 0.1);
  --shadow-lg: 0 4px 6px rgba(46, 46, 46, 0.1);
  
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  
  --grid-gap: 1.5rem;
  
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--size-base);
  line-height: 1.6;
  min-height: 100vh;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

@media (max-width: 575px) {
  h1, h2, h3, h4, h5, h6, a, .policy__list-item {
    word-wrap: anywhere;
  }
}

h1 {
  font-size: var(--size-3xl);
}

h2 {
  font-size: var(--size-2xl);
}

h3 {
  font-size: var(--size-xl);
}

h4 {
  font-size: var(--size-lg);
}

p {
  margin-bottom: var(--space-md);
}


.numbered-title {
  align-items: center;
  display: flex;
  margin-bottom: var(--space-lg);
}

.numbered-title__number {
  align-items: center;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  color: var(--color-white);
  display: flex;
  font-family: var(--font-accent);
  font-size: var(--size-lg);
  height: 2.5rem;
  justify-content: center;
  margin-right: var(--space-md);
  min-width: 2.5rem;
  width: 2.5rem;
}

.numbered-title__text {
  color: var(--color-text);
  font-weight: 600;
}


.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  width: 100%;
}


.section {
  padding-bottom: var(--space-3xl);
  padding-top: var(--space-3xl);
}

.section__header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.section__title {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  color: var(--color-text-light);
  font-size: var(--size-md);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.accent-text {
  color: var(--color-accent);
  font-family: var(--font-accent);
  font-size: 120%;
}


.grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}


.btn {
  align-items: center;
  background-color: var(--color-accent);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--size-base);
  font-weight: 600;
  gap: var(--space-sm);
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  text-align: center;
  transition: all var(--transition-fast);
}

.btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--lg {
  font-size: var(--size-md);
  padding: var(--space-md) var(--space-xl);
}

.btn--arrow::after {
  content: "→";
  font-family: sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  margin-left: var(--space-sm);
  transition: transform var(--transition-fast);
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}


.header {
  align-items: center;
  background-color: var(--color-background);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: var(--space-md) 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow var(--transition-normal);
  z-index: 100;
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__container {
  align-items: center;
  display: flex;
  gap: var(--space-md);
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  align-items: center;
  color: var(--color-text);
  display: flex;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  gap: var(--space-sm);
  height: 40px;
  line-height: 1.5rem;
  width: auto;
  z-index: 11;
}

.nav {
  position: relative;
}

.nav__toggle {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 40px;
  z-index: 11;
}

.nav__toggle-icon {
  color: var(--color-text);
  font-size: 28px;
}

.nav__menu {
  background-color: var(--color-background);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  height: 100vh;
  left: 0;
  list-style-type: none;
  opacity: 0;
  padding: 100px var(--space-xl) var(--space-xl);
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition: all var(--transition-normal);
  visibility: hidden;
  width: 100%;
  z-index: 10;
  overflow-y: auto;
}

.nav--open .nav__menu {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.nav__menu li {
  display: flex;
  gap: var(--space-md);
}

.nav__link {
  color: var(--color-text);
  display: block;
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 600;
  position: relative;
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-accent) !important;
}

.nav__link--active::before {
  background-color: var(--color-accent);
  content: "";
  height: 2px;
  left: -10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
}

.nav__separator {
  color: var(--color-text-light);
  display: none;
  font-weight: 300;
  margin: 0;
}

@media (min-width: 992px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    gap: var(--space-md);
    height: auto;
    opacity: 1;
    padding: 0;
    position: static;
    transform: none;
    transition: none;
    visibility: visible;
    width: auto;
  }

  .nav__link {
    font-size: var(--size-base);
  }

  .nav__link--active::before {
    display: none;
  }

  .nav__separator {
    display: block;
  }
}


.hero {
  align-items: center;
  background: linear-gradient(135deg, rgba(133, 220, 176, 0.2) 0%, rgba(226, 125, 96, 0.2) 100%);
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: var(--space-xl);
  position: relative;
  width: 100%;
}

.hero::before {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23E27D60' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero__container {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 600px;
}

.hero__subtitle {
  color: var(--color-accent);
  font-family: var(--font-accent);
  font-size: var(--size-xl);
  margin-bottom: 0;
}

.hero__title {
  font-size: var(--size-3xl);
  margin-bottom: var(--space-md);
}

.hero__description {
  color: var(--color-text-light);
  font-size: var(--size-lg);
  margin-bottom: var(--space-xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.hero__image {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__image-inner {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero__image-inner img {
  border-radius: var(--radius-lg);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.hero__accent-shape {
  border: 2px dashed var(--color-secondary);
  border-radius: var(--radius-lg);
  height: 100%;
  left: -15px;
  position: absolute;
  top: 15px;
  width: 100%;
  z-index: -1;
}

@media (min-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr 1fr;
  }
}


.feature {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  overflow: hidden;
  padding: var(--space-xl);
  transition: transform var(--transition-normal);
}

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

.feature__icon {
  align-items: center;
  background-color: rgba(133, 220, 176, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-secondary);
  display: flex;
  font-size: var(--size-2xl);
  height: 50px;
  justify-content: center;
  width: 50px;
}

.feature__title {
  font-size: var(--size-lg);
  margin-bottom: var(--space-sm);
}

.feature__description {
  color: var(--color-text-light);
  flex-grow: 1;
  margin-bottom: 0;
}

.feature__link {
  align-items: center;
  color: var(--color-accent);
  display: inline-flex;
  font-weight: 600;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.feature__link-icon {
  font-size: var(--size-base);
  transition: transform var(--transition-fast);
}

.feature__link:hover .feature__link-icon {
  transform: translateX(4px);
}


.course {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

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

.course__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

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

.course__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--space-sm);
  padding: var(--space-lg);
}

.course__title {
  font-size: var(--size-lg);
  margin-bottom: var(--space-xs);
}

.course__meta {
  color: var(--color-text-light);
  display: flex;
  font-size: var(--size-sm);
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.course__meta-item {
  align-items: center;
  display: flex;
  gap: var(--space-xs);
}

.course__meta-icon {
  font-size: var(--size-base);
}

.course__description {
  color: var(--color-text-light);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.course__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (max-width: 400px) {
  .course__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .course__footer .btn {
    width: 100%;
  }
}

.course__price {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 700;
}


.about__grid {
  align-items: center;
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about__subtitle {
  color: var(--color-accent);
  font-family: var(--font-accent);
  font-size: var(--size-lg);
  margin-bottom: 0;
}

.about__title {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-md);
}

.about__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.about__stats {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-bottom: var(--space-lg);
  margin-top: var(--space-lg);
}

.about__stat {
  text-align: center;
}

.about__stat-value {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: var(--size-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.about__stat-label {
  color: var(--color-text-light);
  font-size: var(--size-sm);
}

.about__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.about__image img {
  border-radius: var(--radius-lg);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.about__accent-shape {
  background-color: var(--color-secondary);
  border-radius: var(--radius-lg);
  height: 100%;
  opacity: 0.2;
  position: absolute;
  right: -15px;
  top: 15px;
  width: 100%;
  z-index: -1;
}

@media (min-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
}


.cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.cta::before {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FFFFFF' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: 0;
  width: 100%;
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta__title {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-md);
}

.cta__description {
  font-size: var(--size-md);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.cta .btn {
  background-color: var(--color-white);
  color: var(--color-accent);
}

.cta .btn:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}


.contact__grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__title {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-md);
}

.contact__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.contact__item {
  align-items: center;
  display: flex;
  gap: var(--space-md);
}

.contact__item-icon {
  align-items: center;
  background-color: rgba(226, 125, 96, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  display: flex;
  font-size: var(--size-xl);
  height: 50px;
  justify-content: center;
  width: 50px;
}

.contact__item-content {
  display: flex;
  flex-direction: column;
}

.contact__item-label {
  color: var(--color-text-light);
  font-size: var(--size-sm);
  margin-bottom: var(--space-xs);
}

.contact__item-value {
  font-family: var(--font-heading);
  font-weight: 600;
}

.contact__form {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl);
}

.contact__form-title {
  font-size: var(--size-xl);
  margin-bottom: var(--space-md);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form__label {
  color: var(--color-text-light);
  font-size: var(--size-sm);
  font-weight: 600;
}

.form__input,
.form__textarea {
  background-color: var(--color-background);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--size-base);
  padding: var(--space-sm) var(--space-md);
  transition: border-color var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--color-accent);
  outline: none;
}

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

.form__checkbox {
  align-items: flex-start;
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.form__checkbox-input {
  appearance: none;
  background-color: var(--color-background);
  border: 1px solid var(--color-text-light);
  border-radius: var(--radius-sm);
  height: 20px;
  margin-top: 2px;
  min-width: 20px;
  flex-shrink: 0;
  position: relative;
  width: 20px;
}

.form__checkbox-input:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.form__checkbox-input:checked::after {
  border-bottom: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  content: "";
  height: 10px;
  left: 6px;
  position: absolute;
  top: 2px;
  transform: rotate(45deg);
  width: 6px;
}

.form__checkbox-label {
  color: var(--color-text-light);
  font-size: var(--size-sm);
}

.form__checkbox-label a {
  color: var(--color-accent);
  font-weight: 600;
}

.form__error {
  color: #e63946;
  font-size: var(--size-xs);
  margin-top: var(--space-xs);
}

.form__submit {
  margin-top: var(--space-md);
}

@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}


.footer {
  background-color: var(--color-white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__top {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-2xl);
}

.footer__about {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer__logo {
  display: block;
  height: 40px;
  margin-bottom: var(--space-md);
  width: auto;
}

.footer__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.footer__heading {
  font-size: var(--size-md);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
}

.footer__link {
  color: var(--color-text-light);
}

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

.footer__contact-item {
  align-items: center;
  color: var(--color-text-light);
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer__contact-icon {
  color: var(--color-accent);
  font-size: var(--size-md);
}

.footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(46, 46, 46, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding-top: var(--space-lg);
}

.footer__copyright {
  color: var(--color-text-light);
  font-size: var(--size-sm);
  text-align: center;
}

.footer__policies {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.footer__policy-link {
  color: var(--color-text-light);
  font-size: var(--size-sm);
}

@media (min-width: 576px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}


.back-to-top {
  align-items: center;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
  display: flex;
  height: 40px;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: var(--space-lg);
  transition: all var(--transition-fast);
  visibility: hidden;
  width: 40px;
  z-index: 99;
}

.back-to-top:hover {
  background-color: var(--color-secondary);
  color: var(--color-text);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top__icon {
  font-size: var(--size-xl);
}


.cookies {
  align-items: center;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  bottom: var(--space-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  left: var(--space-sm);
  max-width: 400px;
  padding: var(--space-lg);
  position: fixed;
  right: var(--space-sm);
  z-index: 999;
}

.cookies--visible {
  display: block;
}

.cookies__title {
  font-size: var(--size-lg);
  margin-bottom: var(--space-sm);
}

.cookies__description {
  color: var(--color-text-light);
  font-size: var(--size-sm);
  margin-bottom: var(--space-md);
}

.cookies__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: space-between;
}

@media (max-width: 480px) {
  .cookies__actions {
    flex-direction: column;
  }
  
  .cookies__buttons {
    display: flex;
    width: 100%;
  }
  
  .cookies__settings {
    margin-bottom: var(--space-sm);
  }
}

.cookies__settings {
  align-items: center;
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  display: flex;
  font-family: var(--font-body);
  font-size: var(--size-sm);
  gap: var(--space-xs);
  padding: 0;
  transition: color var(--transition-fast);
}

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

.cookies__settings-icon {
  font-size: var(--size-base);
}

.cookies__buttons {
  display: flex;
  gap: var(--space-sm);
}

.cookies__accept,
.cookies__reject {
  font-size: var(--size-sm);
  padding: var(--space-xs) var(--space-md);
}

.cookies-settings {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 999;
}

.cookies-settings--visible {
  display: flex;
}

.cookies-settings__content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  max-height: 90vh;
  max-width: 500px;
  overflow-y: auto;
  padding: var(--space-xl);
  position: relative;
  width: 100%;
}

.cookies-settings__close {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: var(--size-xl);
  padding: 0;
  position: absolute;
  right: var(--space-md);
  top: var(--space-md);
  transition: color var(--transition-fast);
}

.cookies-settings__close:hover {
  color: var(--color-accent);
}

.cookies-settings__title {
  font-size: var(--size-xl);
  margin-bottom: var(--space-md);
}

.cookies-settings__description {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.cookies-settings__group {
  border-top: 1px solid rgba(46, 46, 46, 0.1);
  margin-bottom: var(--space-lg);
  padding-top: var(--space-lg);
}

.cookies-settings__group-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.cookies-settings__group-title {
  font-size: var(--size-md);
  margin-bottom: 0;
}

.cookies-settings__switch {
  position: relative;
}

.cookies-settings__switch-input {
  height: 0;
  opacity: 0;
  position: absolute;
  width: 0;
}

.cookies-settings__switch-label {
  background-color: rgba(46, 46, 46, 0.2);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: block;
  height: 24px;
  position: relative;
  transition: background-color var(--transition-fast);
  width: 48px;
}

.cookies-settings__switch-label::before {
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  content: "";
  height: 20px;
  left: 2px;
  position: absolute;
  top: 2px;
  transition: transform var(--transition-fast);
  width: 20px;
}

.cookies-settings__switch-input:checked + .cookies-settings__switch-label {
  background-color: var(--color-accent);
}

.cookies-settings__switch-input:checked + .cookies-settings__switch-label::before {
  transform: translateX(24px);
}

.cookies-settings__switch-input:disabled + .cookies-settings__switch-label {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookies-settings__group-description {
  color: var(--color-text-light);
  font-size: var(--size-sm);
}

.cookies-settings__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  margin-top: var(--space-xl);
}


.page {
  padding-top: 80px;
}

.page__header {
  align-items: center;
  background: linear-gradient(135deg, rgba(133, 220, 176, 0.2) 0%, rgba(226, 125, 96, 0.2) 100%);
  display: flex;
  min-height: 200px;
  padding: var(--space-3xl) 0;
  position: relative;
  width: 100%;
}

.page__header::before {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23E27D60' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.page__header-container {
  position: relative;
  text-align: center;
  z-index: 2;
}

.page__title {
  font-size: var(--size-3xl);
  margin-bottom: var(--space-md);
}

.page__breadcrumb {
  align-items: center;
  display: flex;
  gap: var(--space-xs);
  justify-content: center;
}

.page__breadcrumb-link {
  color: var(--color-text-light);
  font-size: var(--size-sm);
}

.page__breadcrumb-separator {
  color: var(--color-text-light);
  font-size: var(--size-sm);
}

.page__breadcrumb-current {
  color: var(--color-accent);
  font-size: var(--size-sm);
  font-weight: 600;
}

.page__content {
  padding: var(--space-3xl) 0;
}


.policy__content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl);
}

.policy__date {
  color: var(--color-text-light);
  font-size: var(--size-sm);
  margin-bottom: var(--space-lg);
  text-align: right;
}

.policy__section {
  margin-bottom: var(--space-xl);
}

.policy__section:last-child {
  margin-bottom: 0;
}

.policy__section-title {
  font-size: var(--size-lg);
  margin-bottom: var(--space-md);
}

.policy__list {
  list-style-position: outside;
  margin-bottom: var(--space-md);
  margin-left: var(--space-lg);
}

.policy__list-item {
  margin-bottom: var(--space-xs);
}

.policy__list-item:last-child {
  margin-bottom: 0;
}

.policy__contact {
  background-color: rgba(133, 220, 176, 0.1);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
}

.policy__contact-title {
  font-size: var(--size-md);
  margin-bottom: var(--space-md);
}

.policy__contact-list {
  list-style: none;
}

.policy__contact-item {
  margin-bottom: var(--space-sm);
}

.policy__contact-label {
  font-weight: 600;
}

.policy__home-link {
  display: block;
  margin-top: var(--space-2xl);
  text-align: center;
}


.thankyou {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 80px);
  padding: var(--space-3xl) 0;
}

.thankyou__content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-2xl);
  text-align: center;
}

.thankyou__icon {
  align-items: center;
  background-color: rgba(133, 220, 176, 0.1);
  border-radius: var(--radius-full);
  color: var(--color-secondary);
  display: flex;
  font-size: var(--size-3xl);
  height: 80px;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  width: 80px;
}

.thankyou__title {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-md);
}

.thankyou__message {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
}

.thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}


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

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}




.courses-page__filters {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
}

.courses-page__filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.courses-page__filter-label {
  color: var(--color-text-light);
  font-size: var(--size-sm);
  font-weight: 600;
}

.courses-page__filter-select {
  background-color: var(--color-background);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--size-sm);
  padding: var(--space-xs) var(--space-md);
}

.courses-page__grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .courses-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .courses-page__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.courses-page__pagination {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-2xl);
}

.courses-page__pagination-link {
  align-items: center;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  display: flex;
  height: 40px;
  justify-content: center;
  transition: all var(--transition-fast);
  width: 40px;
}

.courses-page__pagination-link:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.courses-page__pagination-link--active {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.courses-page__pagination-dots {
  align-items: center;
  color: var(--color-text-light);
  display: flex;
  height: 40px;
  justify-content: center;
}


.team__grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-member {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition-normal);
}

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

.team-member__image {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.team-member__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.team-member__content {
  padding: var(--space-lg);
}

.team-member__name {
  font-size: var(--size-lg);
  margin-bottom: var(--space-xs);
}

.team-member__role {
  color: var(--color-accent);
  font-size: var(--size-sm);
  margin-bottom: var(--space-md);
}

.team-member__description {
  color: var(--color-text-light);
  font-size: var(--size-sm);
}

.timeline {
  margin: var(--space-3xl) 0;
  position: relative;
}

.timeline::before {
  background-color: var(--color-accent);
  content: "";
  height: 100%;
  left: 50%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
}

.timeline__item {
  margin-bottom: var(--space-2xl);
  position: relative;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__content {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  position: relative;
  width: 100%;
  z-index: 2;
}

.timeline__date {
  align-items: center;
  background-color: var(--color-accent);
  border-radius: var(--radius-full);
  color: var(--color-white);
  display: flex;
  font-family: var(--font-heading);
  font-weight: 600;
  height: 60px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 60px;
  z-index: 3;
}

.timeline__title {
  font-size: var(--size-lg);
  margin-bottom: var(--space-sm);
}

.timeline__description {
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .timeline__item {
    display: flex;
    justify-content: center;
  }

  .timeline__content {
    max-width: 45%;
  }

  .timeline__item:nth-child(odd) .timeline__content {
    margin-right: auto;
  }

  .timeline__item:nth-child(odd) .timeline__content::before {
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--color-white);
    border-top: 15px solid transparent;
    content: "";
    height: 0;
    position: absolute;
    right: -15px;
    top: 20px;
    width: 0;
  }

  .timeline__item:nth-child(even) .timeline__content {
    margin-left: auto;
  }

  .timeline__item:nth-child(even) .timeline__content::before {
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--color-white);
    border-top: 15px solid transparent;
    content: "";
    height: 0;
    left: -15px;
    position: absolute;
    top: 20px;
    width: 0;
  }

  .timeline__date {
    left: 50%;
    top: 20px;
  }
}

.values__grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
}

.value__icon {
  align-items: center;
  background-color: rgba(133, 220, 176, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-secondary);
  display: flex;
  flex-shrink: 0;
  font-size: var(--size-xl);
  height: 50px;
  justify-content: center;
  width: 50px;
}

.value__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.value__title {
  font-size: var(--size-lg);
  margin-bottom: var(--space-xs);
}

.value__description {
  color: var(--color-text-light);
  font-size: var(--size-sm);
  margin-bottom: 0;
}


.module {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  height: 100%;
  padding: var(--space-xl);
  transition: transform var(--transition-normal);
}

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

.module__title {
  font-size: var(--size-lg);
  margin-bottom: var(--space-sm);
}

.module__list {
  list-style: disc;
  margin-left: var(--space-lg);
}

.module__list li {
  margin-bottom: var(--space-xs);
}

.module__list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .footer__bottom {
    text-align: center;
  }
  
  .footer__copyright {
    margin-bottom: var(--space-md);
  }
  
  .footer__policies {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 576px) {
  .hero__title {
    font-size: var(--size-2xl);
  }
  
  .hero__description {
    font-size: var(--size-md);
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }
}