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

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

.page-resources-coffee-bean-selection .hero-section h1 {
  font-size: 36px;
  color: #FFFFFF;
}

.page-resources-coffee-bean-selection .hero-section p {
  font-size: 18px;
  color: #FFFFFF;
}

.page-resources-coffee-bean-selection .content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.page-resources-coffee-bean-selection .content-area h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.page-resources-coffee-bean-selection .content-area p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-resources-coffee-bean-selection .content-area img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

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

.page-resources-coffee-bean-selection .related-resources h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

.page-resources-coffee-bean-selection .related-resources ul li {
  margin-bottom: 10px;
}

.page-resources-coffee-bean-selection .related-resources ul li a {
  text-decoration: none;
  color: #333333;
  transition: color 0.3s ease;
}

.page-resources-coffee-bean-selection .related-resources ul li a:hover {
  color: #007BFF;
}

.page-resources-coffee-bean-selection .back-to-resources {
  margin-top: 40px;
  text-align: center;
}

.page-resources-coffee-bean-selection .back-to-resources a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-resources-coffee-bean-selection .back-to-resources a:hover {
  background-color: #0056b3;
}