:root {
  --primary-green: #375946;
  --accent-yellow: #F5C842;
  --light-bg: #f5f5f5;
  --white: #FFFFFF;
  --text-dark: #2C3E3A;
  --text-gray: #5A6B67;
  --border-color: #E1E8E5;
}

/* Main Content */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 0;
}

.policy-intro {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.policy-intro p {
  line-height: 1.9;
  color: var(--text-gray);
}

.section {
  margin-bottom: 50px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  margin-right: 15px;
  font-size: 18px;
  flex-shrink: 0;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.section h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-green);
  margin: 30px 0 15px;
  padding-left: 20px;
  border-left: 3px solid var(--accent-yellow);
}

.section p {
  margin-bottom: 15px;
}

.section ul {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.section li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.section li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-yellow);
  border-radius: 50%;
  transform: rotate(45deg);
}

.highlight-box {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 25px 30px;
  margin: 30px 0;
}

.highlight-box p {
  color: var(--text-dark);
  margin: 0;
  font-weight: 500;
}

.company-info {
  background: var(--light-bg);
  padding: 35px;
  border-radius: 12px;
  margin-top: 60px;
}

.company-info h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin: 0 0 20px;
  border: none;
  padding: 0;
}

.company-info p {
  margin-bottom: 8px;
  color: var(--text-dark);
}

.update-date {
  text-align: right;
  color: var(--text-gray);
  font-size: 14px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

@media (max-width:450px) {
  .section-number {
    width: 32px;
    height: 32px;
  }

  .section h2 {
    font-size: 20px;
  }
}