/* style/resources-coffee-and-health.css */
.page-resources-coffee-and-health {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333333;
  background-color: #E5E5E5;
}

.page-resources-coffee-and-health .hero-section {
  background: linear-gradient(135deg, #333333, #E5E5E5);
  padding: 80px 0;
  text-align: center;
}

.page-resources-coffee-and-health .hero-section h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: white;
}

.page-resources-coffee-and-health .hero-section p {
  font-size: 18px;
  color: white;
}

.page-resources-coffee-and-health .hero-section .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-resources-coffee-and-health .hero-section .btn:hover {
  background-color: #555555;
}

.page-resources-coffee-and-health .content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.page-resources-coffee-and-health .content-area h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-coffee-and-health .content-area p {
  font-size: 16px;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 20px;
}

.page-resources-coffee-and-health .content-area ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-coffee-and-health .content-area li {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.page-resources-coffee-and-health .content-area .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #333333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-resources-coffee-and-health .content-area .btn:hover {
  background-color: #555555;
}

.page-resources-coffee-and-health .related-resources {
  padding: 40px 20px;
  background-color: #F5F5F5;
  text-align: center;
}

.page-resources-coffee-and-health .related-resources h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-coffee-and-health .related-resources ul {
  list-style-type: none;
  padding: 0;
}

.page-resources-coffee-and-health .related-resources li {
  display: inline-block;
  margin: 10px;
}

.page-resources-coffee-and-health .related-resources li a {
  display: block;
  padding: 10px 20px;
  background-color: #333333;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-resources-coffee-and-health .related-resources li a:hover {
  background-color: #555555;
}