/* Базовий 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: #F3F4F6;
  color: #111827;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: #111827;
}

/* Лінки */
a {
  color: #3B82F6;
  text-decoration: none;
}

a:hover {
  color: #10B981;
}

/* Кнопки */
button {
  background-color: #F59E0B;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #D97706;
}
/* Хедер */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

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

.navigation li {
  margin-left: 30px;
}

.navigation a {
  font-size: 16px;
  color: #111827;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: #10B981;
}

/* Футер */
footer {
  background-color: #FFFFFF;
  padding: 40px 50px;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
  color: #111827;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #111827;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: #10B981;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

.footer-column p {
  font-size: 14px;
  margin: 5px 0;
}

/* Hero секція */
.hero {
  position: relative;
  background: linear-gradient(to right, #3B82F6, #10B981);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  overflow: hidden;
}

/* Контент секції */
.hero-content {
  max-width: 800px;
}

/* Анімація заголовка */
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-50px);
  animation: fadeInUp 1s forwards 0.5s;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Анімація тексту */
.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards 1s;
}

/* Кнопка */
.hero-button {
  background-color: #F59E0B;
  color: white;
  text-decoration: none;
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards 1.5s;
}

.hero-button:hover {
  background-color: #D97706;
  transform: translateY(-5px);
}

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

@media (max-width: 768px) {
  header {
      padding: 20px 30px;
  }

  .navigation ul {
      flex-direction: column;
      align-items: center;
  }

  .navigation li {
      margin: 10px 0;
  }
}
@media (max-width: 768px) {
  footer {
      padding: 20px 30px;
  }

  .footer-container {
      grid-template-columns: 1fr;
  }

  .footer-column ul {
      margin-bottom: 20px;
  }

  .footer-column p {
      font-size: 12px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
      font-size: 36px;
  }

  .hero p {
      font-size: 16px;
  }

  .hero-button {
      font-size: 16px;
      padding: 12px 25px;
  }
}

/* Інформативна секція */
.info {
  background-color: #F9FAFB;
  padding: 60px 50px;
  text-align: center;
}

.info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111827;
}

.info p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #111827;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.info-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.info-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-item i {
  font-size: 40px;
  color: #F59E0B;
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 10px;
}

.info-item p {
  font-size: 14px;
  color: #6B7280;
}

/* Hover ефект */
.info-item:hover {
  transform: translateY(-10px);
}

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

  .info-item {
      width: 100%;
      margin-bottom: 20px;
  }
}

/* Практичные советы */
.practical-tips {
  background-color: #F3F4F6;
  padding: 60px 50px;
  text-align: center;
}

.practical-tips h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111827;
}

.practical-tips p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #111827;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.tips-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.tip-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.tip-item i {
  font-size: 40px;
  color: #3B82F6;
  margin-bottom: 20px;
}

.tip-item h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 10px;
}

.tip-item p {
  font-size: 14px;
  color: #6B7280;
}

/* Hover ефект */
.tip-item:hover {
  transform: translateY(-10px);
}

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

  .tip-item {
      width: 100%;
      margin-bottom: 20px;
  }
}

/* Секція кейсів */
.cases {
  background-color: #FFFFFF;
  padding: 60px 50px;
  text-align: center;
}

.cases h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.cases p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #111827;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cases-list {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.case-item {
  background-color: #F9FAFB;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease;
}

.case-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.case-item h3 {
  font-size: 22px;
  color: #111827;
  margin-bottom: 10px;
}

.case-item p {
  font-size: 14px;
  color: #6B7280;
}

/* Hover ефект */
.case-item:hover {
  transform: translateY(-10px);
}

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

  .case-item {
      width: 90%;
      margin-bottom: 20px;
  }
}

/* FAQ секція */
.faq {
  background-color: #F9FAFB;
  padding: 60px 50px;
  text-align: center;
}

.faq h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111827;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 16px;
  color: #6B7280;
}

.faq-item:hover {
  background-color: #F3F4F6;
  transform: translateY(-5px);
}

/* Адаптивність */
@media (max-width: 768px) {
  .faq h2 {
      font-size: 28px;
  }

  .faq-item {
      padding: 20px;
  }

  .faq-item h3 {
      font-size: 18px;
  }

  .faq-item p {
      font-size: 14px;
  }
}
/* Загальний стиль для сторінок політик */
.pages {
  background-color: #FFFFFF;
  padding: 60px 50px;
  color: #111827;
  font-family: 'Roboto', sans-serif;
}

.container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Заголовки */
.pages h1, .pages h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.pages h1 {
  font-size: 36px;
  margin-top: 0;
}

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

/* Списки */
.pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pages li {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 10px;
}

/* Список з підкресленими заголовками */
.pages li strong {
  font-weight: 700;
  color: #111827;
}

/* Посилання */
.pages a {
  color: #3B82F6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pages a:hover {
  color: #10B981;
}

/* Додаткові стилі для кнопок та інтерфейсу */
.pages button {
  background-color: #F59E0B;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.pages button:hover {
  background-color: #D97706;
}

/* Адаптивність для мобільних */
@media (max-width: 768px) {
  .pages {
      padding: 40px 20px;
  }

  .pages h1, .pages h2 {
      font-size: 28px;
  }

  .pages p, .pages li {
      font-size: 14px;
  }
}
/* Cookie попап */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 400px;
  display: none;
  z-index: 9999;
  text-align: center;
}

.cookie-popup-content p {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 15px;
}

.cookie-popup-content a {
  color: #3B82F6;
  text-decoration: none;
}

.cookie-popup-content a:hover {
  color: #10B981;
}

.cookie-button {
  background-color: #F59E0B;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cookie-button:hover {
  background-color: #D97706;
}

/* Анімація появи попапу */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.cookie-popup.show {
  display: block;
  animation: fadeIn 0.5s ease-out;
}

/* Основні стилі для сторінки "О нас" */
.about-intro {
  background-color: #F3F4F6;
  padding: 60px 50px;
  text-align: center;
}

.about-intro h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.about-intro p {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Місія */
.mission {
  padding: 60px 50px;
  background-color: #FFFFFF;
  text-align: center;
}

.mission h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.mission p {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Наша команда */
.team {
  padding: 60px 50px;
  background-color: #F3F4F6;
  text-align: center;
}

.team h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 40px;
}

.team-members {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.team-member {
  width: 250px;
  text-align: center;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-member h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
}

.team-member p {
  font-size: 14px;
  color: #6B7280;
}

/* Переваги */
.advantages {
  padding: 60px 50px;
  background-color: #FFFFFF;
  text-align: center;
}

.advantages h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantages li {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 15px;
}

.advantages li strong {
  color: #111827;
  font-weight: 700;
}

/* Адаптивність для мобільних */
@media (max-width: 768px) {
  .team-members {
      flex-direction: column;
      align-items: center;
  }

  .team-member {
      width: 100%;
      margin-bottom: 20px;
  }

  .advantages li {
      font-size: 16px;
  }
}
/* Основні стилі для сторінки "Контакти" */
.contact-intro {
  background-color: #F3F4F6;
  padding: 60px 50px;
  text-align: center;
}

.contact-intro h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.contact-intro p {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Форма контакту */
.contact-form {
  padding: 60px 50px;
  background-color: #FFFFFF;
  text-align: center;
}

.contact-form h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  font-size: 16px;
  color: #111827;
  display: block;
  margin-bottom: 8px;
}

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

.contact-form textarea {
  height: 150px;
  resize: none;
}

.submit-button {
  background-color: #F59E0B;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #D97706;
}

.response-message {
  margin-top: 20px;
  font-size: 16px;
  color: #10B981;
  font-weight: 600;
}

/* Контактна інформація */
.contact-info {
  padding: 60px 50px;
  background-color: #F3F4F6;
  text-align: center;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 10px;
}

.contact-info a {
  color: #3B82F6;
  text-decoration: none;
}

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

/* Адаптивність для мобільних */
@media (max-width: 768px) {
  .contact-form .form-group {
      margin-bottom: 15px;
  }

  .contact-form label, 
  .contact-form input, 
  .contact-form textarea {
      font-size: 14px;
  }

  .submit-button {
      font-size: 14px;
      padding: 10px 15px;
  }

  .contact-info h2 {
      font-size: 28px;
  }

  .contact-info p, 
  .contact-info li {
      font-size: 14px;
  }
}

