@font-face {
  font-family: 'Montserrat';
  src: url('ttf/Montserrat-Black.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Light';
  src: url('ttf/Light.ttf') format('truetype');
  font-weight: lighter; /* или 300, ако шрифтът е "Light" */
  font-style: normal;
}

@font-face {
  font-family: 'Light';
  src: url('ttf/Montserrat-Regular.ttf') format('truetype');
  font-weight: lighter; /* или 300, ако шрифтът е "Light" */
  font-style: bold;
}

@font-face {
  font-family: 'Regular';
  src: url('ttf/Montserrat-Regular.ttf') format('truetype');
  font-weight: bold; /* или 300, ако шрифтът е "Light" */
  font-style: bold;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Лого */
.loading-logo {
  width: 450px;
  max-width: 80%;
  animation: zoomLogo 2s ease-in-out infinite alternate;
}

/* Анимация */
@keyframes zoomLogo {
  from { transform: scale(1); }
  to { transform: scale(1.2); }
}

/* Мобилна оптимизация */
@media (max-width: 768px) {
  .loading-logo {
    width: 180px;
  }
}



/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #fff;
  border-bottom: 4px solid;
  border-image: linear-gradient(to right, #053b89, #9b327f) 2;
}

.right-header {
  display: flex;
  align-items: center;
  gap: 45px;
}

.logo img {
  height: 43px;
}
/* Обвивка за логото и бутона */
.logo-and-button {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Десктоп бутон */
.header-app-button {
  font-family: 'Light', sans-serif;
  padding: 9px 24px;
  background-color: #1663ce;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.header-app-button:hover {
  background-color: #01458d;
}

/* Скриване на мобилния бутон по подразбиране */
.mobile-app-button {
  display: none;
}

/* Мобилен изглед */
@media (max-width: 768px) {
  .logo-and-button .header-app-button {
    display: none;
  }

  .mobile-app-button {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
  }

  .language-selector {
    margin-top: auto;
  }
}

/* Навигация на мобилни устройства */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: 'Light', sans-serif;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #053b89;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Language Selector */
.language-selector {
  position: relative;
  cursor: pointer;
  display: inline-block;
  font-family: 'Light', sans-serif;
}

.language-selector img {
  width: 24px;
  height: 24px;
  margin-right: 5px;
  vertical-align: middle;
}

.selected-lang {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.language-selector .arrow {
  margin-left: 5px;
  font-size: 14px;
}

.language-dropdown {
  position: absolute;
  top: 35px;
  right: 0;
  background-color: white;
  list-style: none;
  padding: 20px;
  border: 1px solid #ccc;
  display: none;
  flex-direction: column;
  gap: 20px;
  z-index: 100;
  border-radius: 5px;
}

.language-dropdown li {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.language-dropdown li:hover {
  color: rgb(22, 83, 153);
}

.language-selector.open .language-dropdown {
  display: flex;
}

/* Мобилно меню */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 28px;
  color: #000;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 20;
}

/* Икона за бургер меню */
.menu-toggle .hamburger-icon {
  width: 30px;
  height: 3px;
  background-color: #053b89;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-toggle .hamburger-icon::before,
.menu-toggle .hamburger-icon::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: #053b89;
  transition: all 0.3s;
}

.menu-toggle .hamburger-icon::before {
  top: -10px;
}

.menu-toggle .hamburger-icon::after {
  top: 10px;
}

/* Мобилен изглед */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    justify-content: center; /* Центрираме бутоните по вертикала */
    align-items: center; /* Центрираме бутоните хоризонтално */
    gap: 20px;
    padding: 30px 20px;
    background-color: #fff;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transform: translateX(100%); /* Скриваме менюто по подразбиране */
    transition: transform 0.3s ease-out;
    text-align: center; /* Центрираме текстовете на бутоните */
  }

  .nav-links a {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 20px; /* Малко повече разстояние за бутоните */
    display: block;
    width: 100%; /* Бутоните ще са с ширина 100% */
    border-bottom: 1px solid #eee; /* Лека линия под всеки бутон */
    box-sizing: border-box;
  }

  .nav-links a:hover {
    color: #053b89;
    background-color: #f1f1f1; /* Hover ефект за бутоните */
    border-radius: 5px;
  }

  .language-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #000;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

    /* Анимация за бутона за меню */
    .menu-toggle.open {
      transform: rotate(90deg); /* Ротация на бутона за меню когато е активен */
    }

    .menu-toggle.open:before {
      content: "×"; /* Символ за X */
      font-size: 28px;
      color: #000;
    }

      /* Селектора за език */
  .language-selector {
    margin-top: 20px; /* Разстояние от бутоните до селектора */
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 5px;
  }

  .language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    list-style: none;
    padding: 20px;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    border-radius: 5px;
    animation: dropdownAnimation 0.3s ease-out;
  }

    /* Показване на dropdown */
    .language-selector.open .language-dropdown {
      display: flex;
    }

      /* Анимация за появяване на dropdown */
  @keyframes dropdownAnimation {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .language-dropdown li {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-align: center;
  }

  .language-dropdown li:hover {
    color: rgb(22, 83, 153);
    background-color: #f1f1f1;
    border-radius: 5px;
  }

  /* Показване на менюто когато класът "active" е добавен */
  .right-header.active .nav-links {
    transform: translateX(0); /* Връща менюто на място */
    display: block; /* Уверяваме се, че менюто ще се покаже */
    visibility: visible; /* Осигуряваме, че е видимо */
  }

  /* Анимация за иконата */
  .right-header.active .hamburger-icon {
    background-color: transparent;
  }

  .right-header.active .hamburger-icon::before {
    transform: rotate(45deg);
    top: 0;
  }

  .right-header.active .hamburger-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }
}


/* Slider */
/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

.slides-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 2s ease-in-out;
}

.slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}

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

/* Лек затъмняващ слой */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1));
  z-index: 1;
  pointer-events: none;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
}

/* Централно разположен текст */
.slider-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
  padding: 0 20px;
  font-family: 'Light', sans-serif;
}

.slider-text h2 {
  font-size: 2.8em;
  margin: 0;
}

.slider-text p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #ffffff;
}


/* Clients Section */
.our-clients {
  padding: 60px 0;
  background-color: #ffffff;
}

.clients-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.clients-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: 'Light', sans-serif;
  color: #0a3d62;
}

.underline {
  width: 60px;
  height: 4px;
  background: #007BFF;
  margin: 0 auto 30px;
  border-radius: 2px;
}

.clients-logos-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: fit-content;
  animation: scroll-left 25s linear infinite;
}

.logo-loop {
  display: flex;
}

.logo-loop img {
  height: 60px;
  margin: 0 25px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-loop img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}



/* STATS */

.stats-section {
  background-color: #fff; /* Светъл фон */
  color: #111; /* Тъмен текст */
  padding: 60px 20px;
  width: 100%;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
}

.stat-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  filter: none; /* Ако искаш да ги изсветлиш: filter: brightness(0.2); */
}

.stat-item h3 {
  font-size: 30px;
  margin: 5px 0;
  color: #222;
  font-family: 'Montserrat', sans-serif;
}

.stat-item p {
  font-size: 15px;
  color: #424242;
  opacity: 0.9;
  font-family: 'Light', sans-serif;
}

.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #ccc;
  border: 2px solid #ffffff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #007BFF;
}


/* How it Works Section */
/* How it Works Section */
.how-it-works {
  padding: 80px 30px;
  background-color: #f9f9f9;
  color: #2c2c2c; /* наситено сиво за текст */
  overflow: hidden;

  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
}

.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-header h2 {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Light', sans-serif;
  color: #0d3c84; /* синьо заглавие */
  position: relative;
}

.underline-center {
  width: 100px;
  height: 4px;
  background-color: #007BFF;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Заглавия в how-left секцията */
.how-left h2 {
  color: #0d3c84;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  font-family: 'Light', sans-serif;
  animation: fadeInUp 0.6s ease;
  position: relative;
}

.how-left h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #0d3c84;
  margin: 10px auto 0;
  border-radius: 2px;
}

.how-left p {
  font-size: 18px;
  color: #2c2c2c; /* наситено сиво за добър контраст */
  line-height: 1.6;
  font-family: 'Light', sans-serif;
  animation: fadeInUp 0.6s ease;
}

.how-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px auto;
  padding: 20px;

  max-width: 740px; /* Контролира ширината */
  width: 100%;        /* За мобилна адаптивност */

  background-color: #ffffff;
  border-radius: 36px;

  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow:
    0 1px 8px rgba(0, 123, 255, 0.3),
    0 4px 12px rgba(0, 123, 255, 0.3),
    0 12px 26px rgba(0, 123, 255, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  animation: glowFade 6s ease-in-out infinite;
}

@keyframes glowFade {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.3);
  }
  50% {
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.6);
  }
}


.tab-circle {
  width: 90px;
  height: 90px;
  border: 3px solid #0d3c84;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background-color: transparent;
}

.tab-circle img {
  width: 60px;
  height: 60px;
}

.tab-circle:hover {
  background-color: rgba(13, 60, 132, 0.1);
  transform: scale(1.1);
}

.tab-circle.active {
  background-color: #0d3c84;
  transform: scale(1.15);
}

.tab-circle.active img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(195deg) brightness(100%) contrast(100%);
}

.how-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px;
  border-radius: 24px;
  background: linear-gradient(90deg, #011132 0%, #0d3c84 47%, #0d3c84 53%, #011132 100%);
  box-shadow: 0 40px 75px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
  animation: glowFade 6s ease-in-out infinite;
}

@keyframes glowFade {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.3);
  }
  50% {
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.6);
  }
}

/* Лек светлинен ефект над съдържанието */
.how-content::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Съдържание върху тъмен фон */
.how-left, .how-right {
  flex: 1 1 45%;
  text-align: center;
  color: #f2f2f2;
  position: relative;
  z-index: 1;
}

/* Снимката с по-ярък акцент */
.how-right img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 0 30px rgba(13, 60, 132, 0.6), 0 0 10px rgba(255, 255, 255, 0.1);
  animation: fadeInUp 0.6s ease;
  transition: transform 0.3s ease;
}

.how-right img:hover {
  transform: scale(1.03);
}

/* Текст в лявата част */
.how-left h2 {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Light', sans-serif;
  color: #fcfcfc; /* светло синьо за контраст */
  margin-bottom: 15px;
  position: relative;
}

.how-left h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #4db2ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.how-left p {
  font-size: 18px;
  color: #dcdcdc;
  line-height: 1.6;
  font-family: 'Light', sans-serif;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .how-it-works {
    padding: 40px 20px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .how-header h2 {
    font-size: 28px;
  }

  .how-left h2,
  .how-left h2::after {
    font-size: 24px;
    width: 80px;
  }

  .how-left p {
    font-size: 16px;
    
  }

  .how-tabs {
    gap: 12px;
    padding: 15px;
  }

  .tab-circle {
    width: 70px;
    height: 70px;
  }

  .tab-circle img {
    width: 40px;
    height: 40px;
  }

  .how-content {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .how-left,
  .how-right {
    flex: 1 1 100%;
  }

  .how-right img {
    max-width: 100%;
    height: auto;
  }
}


/* video */

.video-section {
  padding: 80px 20px;
  background-color: #f2f4f8;
  text-align: center;
}

.video-section h2 {
  font-size: 36px;
  color: #0a3d62;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.video-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #007BFF, #00BFFF);
  border-radius: 2px;
  margin: 0 auto 30px;
}

.youtube-lazy {
  position: relative;
  width: 100%;
  max-width: 1100px; /* Увеличено от 800px */
  margin: 0 auto;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px; /* по-голям бутон */
  height: 100px;
  background: rgba(0,0,0,0.6) url('https://img.icons8.com/ios-filled/100/ffffff/play--v1.png') center no-repeat;
  background-size: 50px 50px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s;
}

.youtube-lazy:hover .play-button {
  background-color: rgba(0,0,0,0.8);
}

/* Optional: Improve mobile spacing */
@media (max-width: 768px) {
  .video-section h2 {
    font-size: 28px;
  }

  .video-line {
    margin-bottom: 30px;
  }

  .video-container {
    padding-bottom: 56.25%;
    margin: 0 15px;
  }
}



/* TEAM SECTION */
.team-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-radius: 30px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Light', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 10px;
}

.section-header .underline {
  width: 50px;
  height: 3px;
  background-color: #007BFF;
  border-radius: 2px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Мобилен по подразбиране */
  gap: 24px;
  justify-items: center;
}

/* За таблети и по-големи екрани */
@media (min-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

/* Максимум 5 на ред за много широки екрани */
@media (min-width: 1280px) {
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.team-member {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease;
}

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

.team-member img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.team-member .info-box {
  padding: 14px 16px;
  text-align: center;
}

.team-member h3 {
  font-size: 16px;
  font-family: 'Light', sans-serif;
  color: #222;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 13px;
  color: #555;
  font-family: 'Regular', sans-serif;
  margin: 0;
}



/* footer */
.site-footer {
  background: linear-gradient(90deg, #00091f 0%, #072a5a 47%, #072a5a 53%, #00091f 100%);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  color: white;
  padding: 50px 20px 20px 20px; /* Добавих малко отдолу за повече пространство */
  font-family: 'Light', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 250px;
}

.footer-info-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-icon {
  width: 40px;
  height: 40px;
}

.footer-info-block p {
  margin: 2px 0;
  font-size: 15px;
}

.footer-divider {
  width: 120px;
  height: 1px;
  background-color: white;
  opacity: 0.5;
  margin-left: 55px;
}

.footer-divider.short {
  width: 80px;
  margin-top: 15px;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-main-logo {
  width: 250px;
  height: auto;
}

/* Footer bottom section */
.footer-bottom {
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.footer-bottom-line {
  width: 80%;  /* Центрираме линията според ширината на контейнера */
  max-width: 400px;  /* За да не стане твърде широка на големи екрани */
  height: 1px;
  background-color: white;
  opacity: 0.4;
  margin: 0 auto 10px auto;  /* Центрира по хоризонтала */
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  text-align: center;  /* Добавяме за да се уверим, че текста също е центриран */
}



