/* Базовий 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;
}
/* ----------- */

body {
  /* Шрифти */
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);

  /* Кольорові змінні */
  --primary-color: #1F3B73;
  --secondary-color: #F2A900;
  --accent-color: #E94F37;
  --bg-color: #F9FBFD;
  --text-color: #2C3E50;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: gradientBG 10s ease infinite;
  background: linear-gradient(270deg, var(--primary-color), var(--secondary-color));
  background-size: 400% 400%;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}
.header__nav {
  display: flex;
  gap: 1.5rem;
}
.header__nav-item {
  position: relative;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  transition: color 0.3s;
}
.header__nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}
.header__nav-item:hover::after {
  width: 100%;
}
.header__nav-item:hover {
  color: var(--accent-color);
}
.header__nav-item--accent {
  background: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: background 0.3s, color 0.3s;
}
.header__nav-item--accent:hover {
  background: #fff;
  color: var(--accent-color);
}

/* footer.css */
.footer {
  background-color: var(--primary-color);
  color: #fff;
  padding: 3rem 2rem;
  font-size: 0.9rem;
}
.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__col {
  flex: 1 1 200px;
}
.footer__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}
.footer__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer__list,
.footer__contacts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__link:hover {
  color: var(--secondary-color);
}
.footer__contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.footer__contact-icon {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
  }
}

/* hero.css */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Фон */
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

/* Контент */
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  animation: fadeInUpHero 1s ease-out;
}
.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  background-size: 200% 100%;
  transition: background-position 0.5s, transform 0.3s;
}
.hero__btn:hover {
  background-position: 100% 0;
  transform: scale(1.05);
}

/* Fade-in анімація */
@keyframes fadeInUpHero {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Декоративні фігури */
.hero__shapes .shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}
.shape--circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation-duration: 7s;
}
.shape--square {
  width: 100px;
  height: 100px;
  top: 75%;
  left: 80%;
  animation-duration: 5s;
}
.shape--triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(255, 255, 255, 0.1);
  top: 60%;
  left: 30%;
  animation-duration: 8s;
}

/* Плавне коливання */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(20px); }
  100% { transform: translateY(0); }
}

/* Адаптивність */
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .shape--circle { display: none; }
}

/* statistics.css */
.statistics {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}
.statistics__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.statistics__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.statistics__item {
  background: var(--bg-color);
  border-radius: 1rem;
  padding: 2rem;
  flex: 1 1 200px;
  max-width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.statistics__item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.statistics__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.statistics__item:hover::before {
  opacity: 0.2;
}
.statistics__icon {
  width: 40px;
  height: 40px;
  stroke: var(--accent-color);
  margin-bottom: 1rem;
}
.statistics__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.statistics__desc {
  font-size: 0.9rem;
  color: var(--text-color);
}
.statistics__btn {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .statistics__list {
    flex-direction: column;
    align-items: center;
  }
}

/* Базова кнопка */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  transition: background-position 0.5s, transform 0.3s;
}

/* Пріоритетна кнопка */
.btn--primary {
  background: var(--primary-color);
  color: #fff;
  background-size: 200% 100%;
}
.btn--primary:hover {
  background-position: 100% 0;
  transform: scale(1.05);
}

/* how-it-works.css */
.how-it-works {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
}
.how-it-works__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.how-it-works__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}
.how-it-works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.how-it-works__item {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  flex: 1 1 220px;
  max-width: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}
.how-it-works__item:nth-child(1) { animation-delay: 0.2s; }
.how-it-works__item:nth-child(2) { animation-delay: 0.4s; }
.how-it-works__item:nth-child(3) { animation-delay: 0.6s; }
.how-it-works__item:nth-child(4) { animation-delay: 0.8s; }

.how-it-works__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}
.how-it-works__icon i {
  stroke: var(--accent-color);
  width: 100%;
  height: 100%;
}

.how-it-works__step {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

.how-it-works__desc {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

.how-it-works__btn {
  display: inline-block;
  margin-top: 3rem;
}

/* Анимация появления */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптив */
@media (max-width: 768px) {
  .how-it-works__list {
    flex-direction: column;
    align-items: center;
  }
}

/* cases.css */
.cases {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
}
.cases__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.cases__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}
.cases__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.cases__item {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex: 1 1 300px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}
.cases__item:nth-child(1) { animation-delay: 0.2s; }
.cases__item:nth-child(2) { animation-delay: 0.4s; }
.cases__item:nth-child(3) { animation-delay: 0.6s; }

.cases__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.cases__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cases__item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
.cases__item-desc {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.cases__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
}
.cases__btn-icon {
  margin-left: 0.5rem;
  stroke: #fff;
  width: 20px;
  height: 20px;
}

/* Анимация появления */
@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Hover-эффект */
.cases__item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Адаптив */
@media (max-width: 768px) {
  .cases__list {
    flex-direction: column;
    align-items: center;
  }
}
/* faq.css */
.faq {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
}
.faq__container {
  max-width: 800px;
  margin: 0 auto;
}
.faq__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq__item {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.faq__question {
  width: 100%;
  background: var(--bg-color);
  border: none;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq__icon {
  transition: transform 0.3s ease;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.5;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__item--active .faq__answer {
  padding: 1rem 1.5rem;
  max-height: 500px; /* достаточно для содержимого */
}
.faq__item--active .faq__icon {
  transform: rotate(180deg);
}

/* Адаптив */
@media (max-width: 600px) {
  .faq__question {
    padding: 0.75rem 1rem;
  }
  .faq__answer {
    padding: 0 1rem;
  }
}

/* cta.css */
.cta {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  padding: 4rem 2rem;
  overflow: hidden;
  text-align: center;
}

.cta__container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out both;
}

.cta__desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

/* Декоративные фигуры */
.cta__shapes .shape {
  position: absolute;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape--dot {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 15%;
  animation-duration: 8s;
}

.shape--wave {
  width: 200px;
  height: 200px;
  bottom: -40px;
  left: -40px;
  background: rgba(255,255,255,0.15);
  border-radius: 40%;
  animation-duration: 10s;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(20px) rotate(15deg); }
}

/* Адаптив */
@media (max-width: 768px) {
  .cta__title {
    font-size: 2rem;
  }
  .cta__desc {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .shape--dot, .shape--wave {
    display: none;
  }
}

/* cookie.css */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 400px;
  width: calc(100% - 2rem);
  background: #fff;
  color: var(--text-color);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  transition: bottom 0.5s ease;
  z-index: 2000;
}

.cookie-popup--visible {
  bottom: 0;
}

.cookie-popup__message {
  flex: 1 1 auto;
  margin: 0;
  padding-right: 1rem;
  line-height: 1.4;
}

.cookie-popup__link {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s;
}
.cookie-popup__link:hover {
  color: var(--accent-color);
}

.cookie-popup__btn {
  flex: 0 0 auto;
  font-family: 'Inter', sans-serif;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 2rem;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.cookie-popup__btn:hover {
  background: var(--accent-color);
  transform: scale(1.05);
}

/* Адаптив */
@media (max-width: 480px) {
  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }
  .cookie-popup__message {
    padding: 0 0 1rem;
  }
}

/* pages.css */

/* Контейнер */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  line-height: 1.6;
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
}

/* Секция страниц */
.pages {
  background-color: #fff;
  padding: 4rem 0;
}

/* Заголовок страницы */
.pages h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Подзаголовки */
.pages h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
  padding-bottom: 0.25rem;
}

/* Абзацы */
.pages p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-color);
}

/* Списки */
.pages ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}
.pages ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

/* Сильный акцент на терминах */
.pages strong {
  color: var(--primary-color);
}

/* Ссылки */
.pages a {
  color: var(--accent-color);
  text-decoration: underline;
  transition: color 0.3s;
}
.pages a:hover {
  color: var(--secondary-color);
}

/* Адаптив */
@media (max-width: 600px) {
  .pages h1 {
    font-size: 1.75rem;
  }
  .pages h2 {
    font-size: 1.25rem;
  }
  .container {
    padding: 1.5rem 1rem;
  }
}


/* assets/css/advantages.css */

/* Вступительный блок страницы */
.advantages-page-intro {
  background-color: var(--bg-color);
  padding: 4rem 2rem;
  text-align: center;
}
.advantages-page-intro__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.advantages-page-intro__text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
}

/* Сам блок преимуществ */
.advantages {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
  text-align: center;
}
.advantages__container {
  max-width: 1200px;
  margin: 0 auto;
}
.advantages__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
}
.advantages__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.advantages__item {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  flex: 1 1 220px;
  max-width: 260px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}
.advantages__item:nth-child(1) { animation-delay: 0.2s; }
.advantages__item:nth-child(2) { animation-delay: 0.4s; }
.advantages__item:nth-child(3) { animation-delay: 0.6s; }
.advantages__item:nth-child(4) { animation-delay: 0.8s; }

.advantages__item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--secondary-color) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

.advantages__item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.advantages__item:hover::before {
  opacity: 0.15;
}

.advantages__icon {
  width: 48px;
  height: 48px;
  stroke: var(--accent-color);
  margin-bottom: 1rem;
}
.advantages__item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
.advantages__item-desc {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

.advantages__btn {
  display: inline-block;
  margin-top: 3rem;
}

/* Анимация появления */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Адаптив */
@media (max-width: 768px) {
  .advantages__list {
    flex-direction: column;
    align-items: center;
  }
}

/* about.css */

/* Общий контейнер */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Вступление */
.about-intro {
  background-color: var(--bg-color);
  text-align: center;
  padding: 4rem 2rem;
}
.about-intro__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.about-intro__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Ценности */
.about-values {
  padding: 4rem 2rem;
  background-color: #fff;
  text-align: center;
}
.about-values__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.about-values__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.about-values__item {
  flex: 1 1 240px;
  max-width: 280px;
  background: var(--bg-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-values__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.about-values__icon {
  width: 48px;
  height: 48px;
  stroke: var(--accent-color);
  margin-bottom: 1rem;
}
.about-values__item-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}
.about-values__item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.5;
}

/* Команда */
.about-team {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
  text-align: center;
}
.about-team__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}
.about-team__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.about-team__member {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  flex: 1 1 200px;
  max-width: 240px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-team__member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.about-team__photo {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.about-team__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--text-color);
  margin: 1rem 0 0.25rem;
}
.about-team__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Адаптив */
@media (max-width: 768px) {
  .about-values__list,
  .about-team__list {
    flex-direction: column;
    align-items: center;
  }
  .about-intro__title {
    font-size: 2rem;
  }
  .about-intro__text {
    font-size: 1rem;
  }
}

/* assets/css/contact.css */
.contact {
  padding: 4rem 2rem;
  background-color: var(--bg-color);
}
.contact__container {
  max-width: 600px;
  margin: 0 auto;
}
.contact__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}
.contact__form {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.contact__field {
  margin-bottom: 1.5rem;
}
.contact__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-color);
}
.contact__input,
.contact__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.contact__input:focus,
.contact__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.contact__field--captcha .contact__captcha-question {
  font-weight: bold;
  color: var(--accent-color);
}
.contact__btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
}
.contact__response {
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
.contact__response--success {
  color: #2ecc71;
}
.contact__response--error {
  color: #e74c3c;
}
@media (max-width: 600px) {
  .contact__form {
    padding: 1.5rem;
  }
}
