
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

h1, h2, h3 {
  margin: 0.5em 0;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { box-shadow: 0 0 10px 10px rgba(76, 175, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #4CAF50;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-primary:hover {
  background-color: #45a049;
}

.promo-bar {
  background-color: #ffeb3b;
  text-align: center;
  padding: 8px;
  font-weight: 600;
}

header {
  text-align: center;
  padding: 1em;
  position: relative;
}

.logo {
  width: 100px;
}

.slogan {
  font-size: 1.2em;
  margin-top: 0.5em;
}

.hamburger {
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 1.5em;
  cursor: pointer;
}

.menu {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: #f9f9f9;
}

.menu a {
  padding: 10px;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.menu a:hover {
  background-color: #e0e0e0;
}

.centered {
  text-align: center;
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.carousel-container {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

.carousel-item {
  display: inline-block;
  width: 200px;
  margin: 0 10px;
  vertical-align: top;
  text-align: center;
}

.carousel-item img {
  max-width: 100%;
  border-radius: 8px;
}

.section-img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 10px auto;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  padding: 4px 0;
}

footer {
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  color: #777;
}

@media (min-width: 768px) {
  .menu {
    flex-direction: row;
    justify-content: center;
  }
  .menu a {
    border: none;
    padding: 10px 15px;
  }
}


.btn-secondary {
  display: inline-block;
  margin-top: 5px;
  padding: 6px 12px;
  background-color: #777;
  color: white;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #555;
}


.carousel-item div {
  white-space: normal;
  display: block;
}
