

@import url('style.css');

.page-hero {
  background-color: var(--navy);
  padding: 64px 0 56px;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.55);
}

.page-breadcrumb a:hover {
  color: var(--amber);
}

.page-breadcrumb svg {
  width: 12px;
  height: 12px;
  stroke: rgba(255,255,255,0.3);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.page-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.75;
}

.page-content {
  padding: 72px 0;
  background-color: var(--cream);
}

.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-placeholder {
  background-color: var(--white);
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 80px 40px;
  text-align: center;
}

.page-placeholder svg {
  width: 56px;
  height: 56px;
  fill: var(--border);
  margin: 0 auto 20px;
  display: block;
}

.page-placeholder h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--stone);
  margin-bottom: 10px;
}

.page-placeholder p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}

.about-block {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  margin-bottom: 32px;
  text-align: center;
}

.about-block:last-child {
  margin-bottom: 0;
}

.about-block-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}

.about-block p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.about-value {
  background-color: var(--cream);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(200,146,42,0.12);
  border-radius: 8px;
}

.about-value-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--amber);
}

.about-value-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.about-value-desc {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.7;
}

.policy-section {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}

.policy-section:first-child {
  margin-top: 0;
}

.policy-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--amber);
  display: inline-block;
}

.policy-section p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 14px;
}

.policy-section p:last-of-type {
  margin-bottom: 0;
}

.policy-list {
  list-style: none;
  margin: 14px 0;
  padding-left: 0;
}

.policy-list li {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.policy-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--amber);
  font-weight: 700;
}

@media (max-width: 640px) {
  .policy-section {
    padding: 20px 16px;
  }
  
  .policy-list li {
    padding-left: 20px;
  }
}
