.logo-img {
    width: 90px;
}

/* Cookie Popup Style */
.cookie-popup {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: all 0.5s ease;
  font-family: inherit;
  z-index: 9999;
}

.cookie-popup.show {
  bottom: 30px;
  opacity: 1;
}

.cookie-popup p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #333;
}

.cookie-popup button {
  background: #1f6b37;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.cookie-popup button:hover {
  background: #155027;
}

/* Desktop */
.container {
  display: flex;
  font-size: 20px;
}

/* Mobile */
@media (max-width: 600px) {
  .container {
    flex-direction: column;
    font-size: 16px;
  }
}
