* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #222;                  /* softer black */
  background-color: #1a1f36;    /* softened dark background */
}

.header {
  padding: 20px;
  text-align: center;
  background-color: #252a40;    /* lighter header for contrast */
}

.logo img {
  width: 280px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.strapline {
  font-size: 1.2rem;
  margin-top: 8px;
  color: #bbb;                  /* softer highlight */
}

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #1a1f36;
  padding: 20px;
}

.hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
}

.cards-section {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 20px;
  justify-content: center;
}

.card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: #252a40;         /* lighter dark card */
  border: 1.5px solid #F4F3E8;      /* matches logo */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(244, 243, 232, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: #F4F3E8;                     /* text matches logo */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(244, 243, 232, 0.2); /* brighter hover effect */
}

.card h3 {
  margin-bottom: 10px;
  color: #F4F3E8;
}

.card-details {
  margin-top: 30px;
  max-width: 1200px;
  width: 100%;
}

.detail {
  display: none;
  border-radius: 8px;
  background-color: #F4F3E8;
  padding: 20px;
  margin-bottom: 20px;
  color: #252a40;                     /* fixed invalid font-color */
}

.info-sections {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.info-sections > div {
  margin-bottom: 60px;
}

.info-sections h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #F4F3E8;                     /* headings in logo color */
}

.info-sections p {
  font-size: 1rem;
  color: #ddd;                        /* softer text for readability */
  line-height: 1.6;
}

.info-sections a {
  color: #FFA500;                     /* playful accent for links */
  text-decoration: none;
}

.info-sections a:hover {
  text-decoration: underline;
}

.clients-strip {
  width: 100%;
  background-color: #252a40;
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.clients-graphic {
  width: 50%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: contain;
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.podcast {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f4f3e8;          /* card-like background for podcasts */
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.podcast img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 2px solid #FFA500;          /* playful border */
}

.podcast-info h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: #252a40;
}

.podcast-info p {
  font-size: 0.9rem;
  color: #222;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .clients-graphic {
    width: 90%;
  }
  .podcast-list {
    gap: 15px;
  }
  .podcast {
    flex-direction: column;
    align-items: flex-start;
  }
}
