/* ===================================
   ✅ GLOBAL RESET & NORMALIZATION
=================================== */







.about-section,
.page-404,
.membership-page {
  background: #fff;
}

.intro-section {
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.1rem;
}

.membership-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0dcd8;
}

.membership-section:last-child {
  border-bottom: none;
}

.highlight-box {
  background: #faf2e4;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

.highlight-box h2 {
  font-size: 1.8rem;
  color: #805c39;
  margin-bottom: 10px;
  text-align: center;
}

.membership-description {
  font-size: 1rem;
  color: #4d4d4d;
  margin-bottom: 15px;
  text-align: justify;
}

.membership-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.membership-benefits li {
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  color: #4d4d4d;
  padding-left: 30px;
}

.membership-benefits li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #d47378;
  font-size: 1.2rem;
}

