body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #001f3f;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #001f3f;
  padding: 10px 20px;
}

.navbar .logo img {
  height: 45px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #ffcc00;
}

.hero {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(180deg, #001f3f, #003366);
  color: white;
}

.hero h1 {
  margin: 0;
  font-size: 2.5rem;
}

.hero .tagline {
  color: #ffcc00;
  font-weight: bold;
}

.about {
  text-align: center;
  padding: 40px 20px;
}

.episodes {
  padding: 40px 20px;
}

.newsletter {
  text-align: center;
  padding: 40px 20px;
  background: #f9f9f9;
}

.form-box {
  max-width: 500px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contact {
  text-align: center;
  padding: 40px 20px;
}

.footer {
  background: #001f3f;
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 10px;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
}
