/* Базовий 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: 'Roboto', sans-serif;
  background-color: #ECF0F1;
  color: #2C3E50;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: #2C3E50;
}

a {
  text-decoration: none;
  color: #1ABC9C;
}

a:hover {
}

button {
  background-color: #1ABC9C;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #F39C12;
}

button a:hover {
  color: white;
  text-decoration: none;
}

/* Стилі для хедера */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(45deg, #2C3E50, #1ABC9C);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    position: relative;
  z-index: 10;
}

.header__logo a {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.header__logo a:hover {
  transform: scale(1.1);
}

.header__nav {
  display: flex;
}

.header__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.header__nav-list li {
  margin: 0 20px;
}

.header__nav-list a {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: white;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.header__nav-list a:hover {
  color: #F39C12;
  transform: translateY(-3px);
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #F39C12;
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header__nav-list a:hover::after {
  transform: scaleX(1);
}
/* Стилі для футера */
.footer {
  background-color: #2C3E50;
  color: white;
  padding: 40px 20px;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}

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

.footer__logo a {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__logo a:hover {
  color: #1ABC9C;
}

.footer__nav ul,
.footer__info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav ul li,
.footer__info ul li {
  margin-bottom: 10px;
}

.footer__nav a,
.footer__info a {
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__nav a:hover,
.footer__info a:hover {
  color: #F39C12;
}

.footer__contact p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Мобільна версія футера */
@media (max-width: 768px) {
  .footer__container {
      flex-direction: column;
      align-items: center;
  }

  .footer__logo {
      margin-bottom: 20px;
  }

  .footer__nav,
  .footer__info,
  .footer__contact {
      margin-bottom: 20px;
  }

  .footer__contact p {
      text-align: center;
  }
}
/* Стилі для вступної секції */
.intro {
  background: url('../img/hero-bg.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.intro__content {
  z-index: 10;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.intro__title {
  font-family: 'Poppins', sans-serif;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.intro__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.intro__cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1ABC9C;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.intro__cta:hover {
  background-color: #F39C12;
}

@keyframes fadeInUp {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
/* Стилі для секції послуг */
.services {
  background-color: #ECF0F1;
  padding: 80px 20px;
  text-align: center;
}

.services__title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #2C3E50;
  margin-bottom: 20px;
}

.services__title p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 50px;
}

.services__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.services__item {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 30%;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services__item i {
  font-size: 40px;
  color: #1ABC9C;
  margin-bottom: 20px;
}

.services__item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 15px;
}

.services__item p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #7F8C8D;
}

.services__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services__cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1ABC9C;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.services__cta:hover {
  background-color: #F39C12;
}

/* Адаптивність */
@media (max-width: 768px) {
  .services__list {
      flex-direction: column;
  }

  .services__item {
      width: 80%;
      margin: 10px auto;
  }
}
/* Стилі для секції кейсів */
.cases {
  background-color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  color: #2C3E50;
}

.cases__title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.cases__title p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 50px;
}

.cases__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cases__item {
  background-color: #ECF0F1;
  padding: 30px;
  border-radius: 8px;
  width: 30%;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.cases__icon {
  font-size: 40px;
  color: #1ABC9C;
  margin-bottom: 20px;
}

.cases__item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: #2C3E50;
  margin-bottom: 15px;
}

.cases__item p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #7F8C8D;
}

.cases__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cases__cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1ABC9C;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.cases__cta:hover {
  background-color: #F39C12;
}

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

/* Адаптивність */
@media (max-width: 768px) {
  .cases__list {
      flex-direction: column;
  }

  .cases__item {
      width: 80%;
      margin: 10px auto;
  }
}

/* Стилі для секції з вкладками */
.interactive-tabs {
  background-color: #ECF0F1;
  padding: 80px 20px;
  text-align: center;
}

.tabs__title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.tabs__title p {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  color: #7F8C8D;
  margin-bottom: 50px;
}

.tabs {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.tabs__list {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.tab-button {
  background-color: #FFFFFF;
  padding: 15px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #2C3E50;
  border: 1px solid #BDC3C7;
  border-radius: 5px;
  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button:hover {
  background-color: #1ABC9C;
  color: white;
}

.tab-button.active {
  background-color: #1ABC9C;
  color: white;
  border-color: #1ABC9C;
}


.tab-content {
  display: none;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.tab-content.active {
  display: block;
}

.tabs__cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #1ABC9C;
  color: white;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.tabs__cta:hover {
  background-color: #F39C12;
}

@media (max-width: 768px) {
  .tabs__list {
      flex-direction: column;
  }

  .tab-button {
      width: 100%;
      margin-bottom: 10px;
  }

  .tabs__content {
      padding: 20px;
  }
}

/* Стилі для кукі попапу */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2C3E50;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  display: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.cookie-popup__content p {
  margin: 0 0 10px;
  font-size: 16px;
}

.cookie-popup__button {
  padding: 10px 20px;
  background-color: #1ABC9C;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cookie-popup__button:hover {
  background-color: #F39C12;
}
/* Специфічні стилі для сторінки політики (не впливають на інші частини сайту) */

/* Основні стилі для сторінки політики */
.pages {
  background-color: #FFFFFF;
  color: #2C3E50;
  padding: 50px 20px;
  font-family: 'Roboto', sans-serif;
}

/* Контейнер, щоб обмежити ширину */
.pages .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовок на сторінках політик */
.pages h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #1ABC9C;
  margin-bottom: 20px;
  text-align: center;
}

/* Підзаголовки */
.pages h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 2px solid #1ABC9C;
  padding-bottom: 10px;
}

/* Текст */
.pages p {
  font-size: 16px;
  line-height: 1.6;
  color: #7F8C8D;
  margin-bottom: 20px;
}

/* Списки */
.pages ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.pages ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #7F8C8D;
  margin-bottom: 10px;
}

/* Лінки */
.pages a {
  color: #1ABC9C;
  text-decoration: none;
}

.pages a:hover {
  color: #F39C12;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
  .pages .container {
      padding: 0 10px;
  }
  
  .pages h1 {
      font-size: 28px;
  }

  .pages h2 {
      font-size: 24px;
  }

  .pages p, .pages ul li {
      font-size: 14px;
  }
}

/* Стилі для сторінки "About Us" */
.about {
  background-color: #FFFFFF;
  color: #2C3E50;
  padding: 50px 20px;
  font-family: 'Roboto', sans-serif;
}

/* Контейнер для обмеження ширини */
.about .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовок */
.about h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #1ABC9C;
  margin-bottom: 20px;
  text-align: center;
}

/* Підзаголовки */
.about h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #2C3E50;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 2px solid #1ABC9C;
  padding-bottom: 10px;
}

/* Текст */
.about p {
  font-size: 16px;
  line-height: 1.6;
  color: #7F8C8D;
  margin-bottom: 20px;
}

/* Списки */
.about ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.about ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #7F8C8D;
  margin-bottom: 10px;
}

/* Лінки */
.about a {
  color: #1ABC9C;
  text-decoration: none;
}

.about a:hover {
  color: #F39C12;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
  .about .container {
      padding: 0 10px;
  }
  
  .about h1 {
      font-size: 28px;
  }

  .about h2 {
      font-size: 24px;
  }

  .about p, .about ul li {
      font-size: 14px;
  }
}
/* Стилі для сторінки контактів */
.contact {
  background-color: #FFFFFF;
  color: #2C3E50;
  padding: 50px 20px;
  font-family: 'Roboto', sans-serif;
}

/* Контейнер */
.contact .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Заголовок */
.contact h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  color: #1ABC9C;
  margin-bottom: 20px;
  text-align: center;
}

/* Опис */
.contact p {
  font-size: 16px;
  line-height: 1.6;
  color: #7F8C8D;
  margin-bottom: 40px;
  text-align: center;
}

/* Блок контактної інформації */
.contact-info {
  margin-bottom: 40px;
}

.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  color: #2C3E50;
  margin-bottom: 15px;
  text-align: center;
}

.contact-info p {
  font-size: 16px;
  color: #7F8C8D;
  margin-bottom: 10px;
  text-align: center;
}

.contact-info a {
  color: #1ABC9C;
  text-decoration: none;
}

.contact-info a:hover {
  color: #F39C12;
}

/* Форма */
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F4F6F7;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  font-size: 16px;
  color: #2C3E50;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #BDC3C7;
  border-radius: 5px;
  margin-bottom: 20px;
}

.contact-form button {
  background-color: #1ABC9C;
  color: white;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #F39C12;
}

/* Повідомлення після відправки форми */
.form-response {
  font-size: 16px;
  color: #1ABC9C;
  text-align: center;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
  .contact .container {
      padding: 0 10px;
  }

  .contact h1 {
      font-size: 28px;
  }

  .contact-form {
      width: 100%;
  }

  .contact-form label,
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
      width: 100%;
  }
}
