
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background: #f9f9f9;
  color: #2c3e50;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  color: #003f7d;
  text-align: center;
}
.section {
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}
.section p, ul {
  font-size: 1.1em;
  margin-top: 10px;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 10px;
}
.carousel img {
  height: 300px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}
.carousel img:hover {
  transform: scale(1.1);
}
.carousel .caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  font-size: 1.2em;
  font-weight: bold;
}
.floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}
.instagram {
  background: #E1306C;
  bottom: 90px;
}
footer {
  text-align: center;
  padding: 30px;
  background: #003f7d;
  color: white;
}
.fade-in {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
