body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

.navbar {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 999;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* filepath: d:\website Italia\my-website-main\styles.css */
.logo {
  background: none; /* Уверява се, че няма фон */
  border: none; /* Премахва всякакви рамки */
  width: 50; /* Ширина на логото */
  height: auto; /* Запазва пропорциите */
  object-fit: contain; /* Уверява се, че изображението се побира в контейнера */
}


nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #007bff;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover {
  color: #0056b3;
}

.hero {
  background: linear-gradient(to right, #004e92, #000428);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background-color: #00c6ff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #007bff;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #fff;
}

.feature {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

.features img {
  background: none; /* Уверява се, че няма фон */
  border: none; /* Премахва всякакви рамки, ако има такива */
}

.feature {
  background: none; /* Уверява се, че няма фон в контейнера */
}

.features img {
  width: 150px; /* Ширина на изображенията */
  height: auto; /* Автоматична височина за запазване на пропорциите */
  object-fit: cover; /* Опционално: за изрязване на изображението */
  border-radius: 8px; /* Опционално: заоблени ъгли */
}
.feature img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: none;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: #0056b3;
}