:root {
background: #000000;  /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #434343, #000000);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #434343, #000000); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}



   .hidden {
  display: none;
}



/* Language Switcher Styles */


.lang-switcher {
  display: flex;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 50px;
  transition: background 0.3s ease;
}

.lang-btn.active {
  background: #00d8ff;
  color: #0f172a;
}

.lang-btn:not(.active):hover {
    background: rgba(255, 255, 255, 0.2);
}
/* для экранов меньше 768px */
@media (max-width: 768px) {
  .lang-switcher {
    position: fixed;
    top: 92px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 5px;
    border-radius: 50px;
    z-index: 1000;
  }
}

/* НОВЫЙ КЛАСС для скрытия, который будет применяться с помощью JS */
.lang-switcher.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}


    body {
      font-family: 'e-Ukraine', -apple-system, BlinkMacSystemFont,
                  "Segoe UI", Roboto, "Helvetica Neue", Arial,
                  "Noto Sans", "Liberation Sans", sans-serif;
      font-weight: 400;
      margin: 0;
      line-height: 1.6;
    background: var(--bg-gradient);
    }
    /* Заголовки */
      h1, h2, h3, h4, h5, h6 {
        font-family: 'e-Ukraine Head', 'e-Ukraine',
                    -apple-system, BlinkMacSystemFont,
                    "Segoe UI", Roboto, "Helvetica Neue", Arial,
                    sans-serif;
        font-weight: 700;
      }


    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    header {
    position: fixed; /* закріплюємо зверху */
    top: 0;
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* легка рамка */
    z-index: 999;
    padding: 15px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
  }


    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

header.scrolled {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
    .logo {
      font-weight: bold;
      font-size: 1.2rem;
    }

.nav ul {
  list-style: none;      /* прибираємо маркери списку */
  display: flex;         /* горизонтальне розташування пунктів */
  gap: 25px;             /* відстань між пунктами */
  margin: 0;
  padding: 0;
}

.nav li {
  display: inline-block;
}

.nav a {
  color: #ffffff;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav a:hover {
  background: rgba(0,216,255,0.15);
  color: #00d8ff;
}
.nav-link {
  color: #fff;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.nav-link:hover {
  background: rgba(0,216,255,0.15);
  color: #00d8ff;
}

.nav-link-mail {
  color: #fff;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-link-mail:hover {
  background: rgba(0,216,255,0.15);
  color: #00d8ff;
}

@media (max-width: 768px) {
  .nav-link-mail {
    display: none;
  }
}

/* Сховати навігацію на мобільних */
.nav {
  display: flex;
}

.burger-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Мобільні */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    padding: 1rem;
  }

  .nav.active {
    display: flex;
  }

  .burger-btn {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ===== Модальне вікно (Спасибо) ===== */

/* затемнение фона */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* окно */
.modal-thanks {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: fadeInUp 0.4s ease forwards;
  color: #222; /* тёмный текст */
  font-size: 18px;
  line-height: 1.5;
}

/* стиль кнопки */
#closeModal {
  margin-top: 20px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #007BFF;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

/* ховер/нажатие */
#closeModal:hover {
  background: #0056b3;
}

#closeModal:active {
  transform: scale(0.97);
}
/* ===== Модальне вікно (glass) ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* затемнений фон */
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal.flex { display: flex; }
.modal.hidden { display: none; }

.modal-content {
  background: rgba(255, 255, 255, 0.15); /* прозорий фон */
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25); /* легка рамка */
  padding: 30px;
  max-width: 900px;
  width: 95%;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  color: #fff;
}

.modal-grid input,
.modal-grid select {
  width: 90%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.modal-grid input::placeholder,
.modal-grid select::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.modal-grid input:focus,
.modal-grid select:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px #ff9800;
}

/* Style for select dropdown */
.modal-grid select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5em;
}

/* Ensure consistent styling for weight input */
#weight {
  margin-bottom: 0.5rem;
}

/* Adjust the weight value display */
#weightValue {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}


.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 8px;
  color: #fff;
  transition: background 0.3s ease;
}
.modal-close:hover {
  background: rgba(255,255,255,0.35);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  color: #fff;
}
.price-table th,
.price-table td {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px;
  text-align: left;
}
.price-table th {
  background: rgba(255,255,255,0.15);
  font-weight: 600;
}

.note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 5px;
}

.result {
  margin-top: auto; /* Прижимаем к низу */
  padding: 10px;
  border-radius: 8px;
}

/* ===== HERO (glass) ===== */
/* Родительский контейнер */
.logo {
  display: flex; /* Выстраивает картинку и текст в ряд */
  align-items: center; /* Выравнивает их по центру по вертикали */
}

/* Стили для вашей картинки */
.logo-img {
  height: 60px;
  width: auto;

}

/* Стили для текста */
.logo-text {
  margin-left: 15px; /* Отступ от логотипа */
  font-size: 24px;
}

.hero {
  position: relative; /* родитель должен быть position: relative */
  background: url('img/hero6.webp') center/cover no-repeat;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
  z-index: 1;
}

.hero .container {
  position: absolute; /* позиционируем относительно .hero */
  right: 0;
  bottom: 0;
  max-width: 800px;
  padding: 2rem;
}


.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero h1 {
  color:#fff;
  font-size: clamp(2rem, 5vw, 3rem);  /* Responsive font size */
  font-weight: bold;
  margin: 0 0 1rem 0;                  /* Consistent margin */
  line-height: 1.2;                    /* Fixed line height */
}

.hero p {
    color:#fff;
  font-size: clamp(1rem, 2.5vw, 1.25rem);  /* Responsive font size */
  margin: 0 0 2rem 0;                       /* Consistent margin */
  line-height: 1.5;                         /* Fixed line height */
  max-width: 600px;                         /* Limit text width */
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background: linear-gradient(135deg, #00bfff, #0077cc);
  color: #fff;
  padding: 14px 28px;
  font-size: 1.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,191,255,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #009acd, #005fa3);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,191,255,0.6);
}

/* ============================= */
/*        ABOUT SECTION          */
/* ============================= */
.about-section {
  padding: 60px 20px;
  color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* LEFT & RIGHT */
.about-left {
  flex: 1 1 30%;
}

.about-left h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.about-left p {
  color: #fff;
}

.about-right {
  flex: 1 1 65%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px;
}

/* TOP ROW */
.top-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.top-row h3 {
font-size: 1.8rem;
  text-align: center;
  flex: 1;
}

.top-row p span {
  font-weight: 500;
}

.capital div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: rgba(255,255,255,0.05);
}

/* DETAILS GRID - 3 COLUMNS */
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.details-card {
  background: rgba(255,255,255,0.03);
  list-style: none;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 15px;
}

.details-card h4 {
  font-weight: 600;
  color: #fff;
  margin-top: 15px;
}

.details-card p, .details-card ul {
  margin-top: 5px;
  list-style: none;
  color: #fff;
}

.details-card ul {
  padding-left: 20px;
}

/* BUTTONS */
.buttons-row {
  display: flex;
  justify-content: center;  /* по центру по горизонтали */
  margin-top: 20px;         /* сверху отступ, если нужен */
}

.buttons-row button {
  min-width: 220px;         /* фиксированная ширина */
  list-style: none;
  text-align: center;
  padding: 12px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons-row button:hover {
  background: rgba(0,216,255,0.15);
  color: #00d8ff;
  border-color: rgba(0,216,255,0.5);
  transform: translateY(-2px); /* лёгкая анимация */
}

/* DOCUMENTS */
.details-card {
  position: relative;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.details-card h4 {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.details-card h4 .label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9em;
}

.details-card h4 .value {
  color: #00d8ff;
}

.details-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  gap: 12px;
}

.details-card ul li a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.details-card ul li a::before {
  content: '📄';
  margin-right: 10px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.details-card ul li a:hover {
  background: rgba(124,58,237,0.15);
  color: #00d8ff;
  border-color: rgba(124,58,237,0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(124,58,237,0.2);
}

.details-card ul li a:hover::before {
  opacity: 1;
}

.details-card .documents-link {
  display: flex;
  align-items: center;
  width: 100%;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  background: rgba(0,216,255,0.1);
  border: 1px solid rgba(0,216,255,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-sizing: border-box;

}

.details-card .documents-link:hover {
  background: rgba(0,216,255,0.2);
  color: #00d8ff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,216,255,0.2);
}

@media (max-width: 768px) {
  .details-card {
    padding: 20px;
  }
}
/* ============================= */
/*        RESPONSIVE GRID        */
/* ============================= */
@media (max-width: 1024px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .about-left, .about-right {
    flex: 1 1 100%;
  }
}



/*--------SERVICES----------*/
/* Services Section */
.services {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh; /* Центрируем и по вертикали */
}

.services-cards {
  width: min(100% - 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.services-card {

  position: relative;
  border: solid var(--border-width) #0000;
  border-radius: var(--border-radius);
  /* background-image: url("img/about.webp");*/
  background-color: rgba(255, 255, 255, 0.98);
  background-attachment: fixed;
  background-size: cover;
  background-position: top center;
}

@media (width > 600px) {
  .services-card {
    min-height: 350px;
  }
}

/* разные цвета для карточек */
.services-card:nth-child(1) { --moon-clr: rgb(1, 1, 1); }
.services-card:nth-child(2) { --moon-clr: rgb(166, 95, 0); }
.services-card:nth-child(3) { --moon-clr: rgb(159, 7, 18); }
.services-card:nth-child(4) { --moon-clr: rgb(0, 89, 138); }

.services-card > div {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: 1rem;
}
.services-card > div::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
}

.services-card h2 {
  color: #000000;
  margin: 0;
  font-size: 1.4rem;
  text-shadow: 1px 1px var(--moon-clr);
}
.services-card p {
  color: #000000;
  text-shadow: 0 0 1px black;
  font-size: 0.9rem;
  line-height: 1.4;
}
.services-card a {
  background-color: var(--moon-clr);
  color: white;
  font-size: 0.8rem;
  text-transform: lowercase;
  width: 80px;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  transition: 150ms ease-in-out;
  border: 1px solid rgba(255 255 255 / 0.5);
}
.services-card a:hover {
  width: 100%;
}


@media (max-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
  }
}

@media (max-width: 640px) {
  .services-cards {
    grid-template-columns: 1fr; /* 1 колонка на мобільних */
    gap: 2rem;
  }
}

/* ---------END SERVICES  ------------- */

/* -------- Contacts Section -------- */
.contacts {
  color: #fff;
  padding: 4rem 2rem;
}

.contacts-container {
  max-width: 1100px;
  margin: 0 auto;
}

.contacts-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}
.contacts-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff9800;
  display: block;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px; /* достатньо велике значення, щоб умістити контент */
}

.faq {
  padding: 60px 20px;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.faq .container {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.faq-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
}

.faq-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ff9800;
  display: block;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  opacity: 0.8;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  opacity: 1;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-content p {
  padding: 20px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

@media (max-width: 768px) {
  .faq {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .accordion-header {
    padding: 15px;
    font-size: 1rem;
  }

  .accordion-content p {
    padding: 15px;
    font-size: 0.95rem;
  }
}

/* Contact info */
.contacts-info {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.contacts-info a {
  color: #00d8ff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts-info a:hover {
  color: #7c3aed;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px #ff9800;
}

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

.contact-form .btn {
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}
.contact-form .btn:hover {
  background: #e68900;
  transform: translateY(-3px);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  
  .contacts-info {
    margin-bottom: 2rem;
  }
}
/* -------- FOOTER -------- */

.footer {
  color: #fff;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 30px;
}
.footer-text {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 10px;
  }
}