@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;
}

b, strong {
  font-weight: 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 {
  font-family: 'Light', sans-serif;
  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;
}

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

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

/* tech */

.tech-section {
    padding: 60px 20px;
    background: white;
  }
  
  .tech-section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .tech-main-title {
    font-family: 'Light', sans-serif;
    text-align: center;
    font-size: 42px;
    color: #0a3d62;
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 2px;
  }

  .tech-main-minititle {
    font-family: 'Light', sans-serif;
    text-align: center;
    font-size: 16px;
    color: #333333;
    margin-bottom: 2px;
    font-weight: bold;
    letter-spacing: 2px;
  }

  .underline {
    width: 100px;
    height: 5px;
    background: #007BFF;
    margin: 0 auto 20px;
    border-radius: 2px;
  }
  
  .tech-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .tech-text {
    flex: 1 1 30%; /* намаляваме от 45% на 30% */
    min-width: 250px;
  }
  
  .tech-text h3 {
    font-family: 'Light', sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  
  .tech-text p {
    font-family: 'Light', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
  }
  
  /* === Desktop стил === */
  .tech-images-desktop {
    flex: 1 1 65%; /* по-голяма площ за снимките */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .tech-images-desktop .images-wrapper {
    display: flex;
    gap: 25px; /* по-голямо разстояние между снимките */
  }
  
  .tech-images-desktop .images-wrapper img {
    width: 100%;
    max-width: 500px;
    height: 620px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  /* === Mobile стил === */
  .tech-images-mobile {
    display: none; /* Скрито по подразбиране */
  }
  
  /* Разделителна линия */
  .separator {
    width: 100%;
    height: 1px;
    background: #000;
    opacity: 0.1;
    margin: 30px 0;
  }
  
  /* === Мобилен стил === */
/* === Подобрена мобилна оптимизация === */
@media (max-width: 768px) {

  .tech-section {
    padding: 40px 16px; /* по-малко вътрешно пространство */
  }

  .tech-main-title {
    font-size: 28px; /* по-малък шрифт */
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .tech-main-minititle {
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .underline {
    width: 60px;
    height: 4px;
    margin-bottom: 25px;
  }

  .tech-item {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    text-align: center;
  }

  .tech-text {
    margin-bottom: 8px;
    flex: unset;
  }

  .tech-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
  }

  .tech-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
  }

  .tech-images-desktop {
    display: none;
  }

  .tech-images-mobile {
    display: flex;
    width: 100%;
    max-width: 340px;
    overflow-x: auto;
    border-radius: 5px;
    margin: 0 auto;
  }

  .tech-images-mobile .images-wrapper {
    display: flex;
    gap: 10px;
    min-width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .tech-images-mobile .images-wrapper img {
    flex: 0 0 auto;
    width: 85%;
    height: auto;
    scroll-snap-align: start;
    border-radius: 8px;
  }

  .separator {
    margin: 20px 0;
  }
}



/* === STEP SWIDER === */

/* PROGRESS BAR */
.process-progress-bar {
  height: 4px;
  background: #ddd;
  margin: 20px auto;
  width: 80%;
  position: relative;
  border-radius: 2px;
}

.process-progress-fill {
  height: 100%;
  background: #e60012;
  width: 0;
  transition: width 0.4s ease;
  border-radius: 2px;
}

/* MAIN CONTAINER */
.process-chain {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.process-title {
  font-family: 'Light', sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.process-description {
  font-family: 'Light', sans-serif;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #555;
}

/* STEP INDICATOR */
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step.active {
  opacity: 1;
  color: #053b89;
  transform: scale(1.1);
}

.step::after {
  content: '';
  height: 4px;
  width: 0;
  background-color: #053b89;
  margin-top: 5px;
  transition: width 0.3s ease;
}

.step.active::after {
  width: 30px;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
}

.step-title {
  font-family: 'Light', sans-serif;
  font-size: 14px;
}

.arrow {
  font-size: 20px;
  color: #bbb;
  transform: translateY(-5px);
}

/* STEP CONTENT AREA */
.process-content-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  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);
  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);
  }
}

.process-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
}

.step-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.step-info {
  max-width: 500px;
  padding: 24px;
  text-align: left;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 123, 255, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.step-info:hover {
  box-shadow:
    0 2px 4px rgba(0, 123, 255, 0.3),
    0 6px 16px rgba(0, 123, 255, 0.2),
    0 20px 40px rgba(0, 123, 255, 0.1);
  transform: translateY(-2px);
}

.step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #053b89;
  margin-bottom: 10px;
}

.step-info h3 {
  font-family: 'Light', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.step-info p {
  font-family: 'Light', sans-serif;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/* NAVIGATION BUTTONS */
.nav-btn {
  background-color: #053b89;
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
}

.nav-btn:hover {
  background-color: #042b6a;
}

.nav-btn .icon {
  font-weight: bold;
}

.nav-left,
.nav-right {
  display: inline-flex;
}

/* Mobile-Specific Navigation */
.process-nav-buttons-mobile {
  display: none;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .process-title {
    font-size: 24px;
  }

  .process-description {
    font-size: 14px;
  }

  .step-number {
    font-size: 18px;
  }

  .step-title {
    font-size: 12px;
  }

  .step-label {
    font-size: 16px;
  }

  .step-info h3 {
    font-size: 18px;
  }

  .step-info p {
    font-size: 15px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .process-nav-buttons-mobile {
    display: flex;
  }

  .process-content-wrapper {
    flex-direction: column;
    padding: 30px 15px;
    border-radius: 16px;
  }

  .process-content {
    flex-direction: column;
    gap: 20px;
  }

  .step-info {
    text-align: center;
    padding: 20px;
  }

  .step-image img {
    max-width: 100%;
    height: auto;
  }
}


/* machines */

.machines-section {
  padding: 80px 20px;
  background: #fff;
}

.machines-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.machines-text-content {
  max-width: 400px;
  margin-bottom: 30px;
}

.machines-text-content h2 {
  font-family: 'Light', sans-serif;
  font-size: 36px;
  color: #222;
  margin-bottom: 10px;
}

.machines-text-content p {
  font-family: 'Light', sans-serif;
  font-size: 15px;
  color: #666;
}

.machines-slider-container {
  padding: 0;
  overflow: hidden;
}

.machines-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s ease;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.machines-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
}

.machines-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


#machinesSlider {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.machine-card {
  scroll-snap-align: center;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  width: calc(100% / 3 - 20px);
  max-width: 380px;
}

.machine-card img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  display: block;
  background-color: #fff;
}

.machine-info {
  padding: 15px;
  text-align: center;
}

.machine-info h4 {
  font-family: 'Light', sans-serif;
  color: #053b89;
  margin-bottom: 5px;
}

.machine-info p {
  font-family: 'Light', sans-serif;
  font-size: 14px;
  color: #444;
}

.machine-label {
  font-family: 'Light', sans-serif;
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0ca726;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
  z-index: 2;
}

.machine-arrow {
  font-size: 24px;
  background: #053b89;
  color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.machine-arrow:hover {
  background: #042f6c;
}

.machines-arrows-mobile {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Мобилен изглед */
@media (max-width: 768px) {
  .machine-card {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .machines-text-content {
    max-width: 100%;
  }

  .machines-text-content h2 {
    font-size: 28px;
  }

  .machines-slider {
    padding: 0 10px;
  }
}



/* 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;  /* Добавяме за да се уверим, че текста също е центриран */
}
