.membership-section {
  background-color: #f2f1ec;
  display: flex;
  justify-content: center;
  align-items: center;
  
  padding: 40px 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.membership-card {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  text-align: center;
}

.membership-title {
  font-size: 26px;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.membership-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.membership-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #786d60;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.membership-button:hover {
  background-color: #5c5248;
}