/* General page styling */
body {
  background-color: #f7f1e3;
  font-family: Arial, sans-serif;
  color: #222;
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Header styling */
header {
  text-align: center;
  margin-bottom: 35px;
}

/* Main title style */
h1 {
  font-size: 44px;
  color: #4a2c1a;
  margin-bottom: 10px;
}

/* Section heading style */
h2 {
  color: #6b4f2a;
  font-size: 30px;
  margin-top: 40px;
  margin-bottom: 18px;
}

/* Smaller title style */
h3 {
  color: #4a2c1a;
  font-size: 24px;
  margin-bottom: 10px;
}

/* Intro paragraph style */
.intro {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Card layout for each cow image */
.cow-card {
  display: flex;
  align-items: center;
  gap: 25px;
  background-color: #fffaf0;
  border: 2px solid #6b4f2a;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
}

/* Cow image styling */
.cow-img {
  width: 260px;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #4a2c1a;
}

/* Text next to each cow image */
.cow-text {
  max-width: 480px;
  line-height: 1.4;
}

/* Source text styling */
.source {
  color: #555;
  font-size: 14px;
}

/* Link styling */
a {
  color: #6b4f2a;
}

/* Clickable thumbnail card */
.thumbnail-card {
  background-color: #fffaf0;
  border: 2px solid #6b4f2a;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
  text-align: center;
}

/* Thumbnail image styling */
.thumbnail {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #6b4f2a;
  display: inline-block;
}

/* Media card styling for audio and video */
.media-card {
  background-color: #fffaf0;
  border: 2px solid #6b4f2a;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
}

/* Audio and video spacing */
audio,
video {
  display: block;
  margin: 10px 0 15px 0;
}

/* Video size */
video {
  width: 420px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* List card styling */
.list-card {
  background-color: #fffaf0;
  border: 2px solid #6b4f2a;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 25px;
}

/* Custom bullet image */
ul {
  list-style-image: url("https://cdn0.iconfinder.com/data/icons/typicons-2/24/star.png");
}

/* List item styling */
li {
  font-size: 18px;
  margin: 10px;
}