body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f7f7f7;
  color: #333;
}

header {
  background-color: #004466;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.logo img {
  width: 80px;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover,
nav ul li a.active {
  text-decoration: underline;
  color: #00c2ff;
}

.hero {
  background: #e6f0ff;
  padding: 40px 20px;
  text-align: center;
}

.info,
.media-content {
  padding: 20px;
  text-align: center;
}

.video-gallery iframe {
  max-width: 560px;
  width: 100%;
  height: 315px;
  border-radius: 8px;
}

.articles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
}

.articles article {
  max-width: 600px;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  width: 100%;
}

.articles a,
.blog-post a {
  color: #004466;
  font-weight: bold;
  text-decoration: none;
}

.blog-page {
  padding: 40px 20px;
  background-color: #fff;
  max-width: 800px;
  margin: auto;
}

.blog-post {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #eaf2f8;
  border-left: 6px solid #004466;
  border-radius: 8px;
}

.blog-post h3 {
  margin-top: 0;
}

footer {
  background-color: #004466;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background-color: #25D366;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  background-color: #128C7E;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    text-align: center;
  }

  .articles article {
    width: 100%;
  }
}
