

.page-hero {
  background: var(--color-hero-bg);
  padding: 64px 24px 56px;
  border-bottom: 1px solid var(--color-border);
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.page-hero .tag { margin-bottom: 10px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero p  {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 560px;
  margin: 0;
}

.page-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.about-section {
  background: var(--color-surface);
  padding: 64px 24px;
}
.about-section-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-section-centered .about-block-content,
.about-section-centered .about-block-illustration {
  flex: 1;
  max-width: 500px;
}
.about-section-centered .about-block-content {
  margin-right: 32px;
}
.about-section-alt {
  background: var(--color-bg);
}
.about-block-content .tag { margin-bottom: 12px; }
.about-block-content h2 { margin-bottom: 18px; }
.about-block-content p  { 
  color: var(--color-muted); 
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-block-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-block-illustration svg {
  max-width: 100%;
  height: auto;
}

.about-section.about-values {
  background: var(--color-primary);
  padding: 0;
}
.about-section.about-values .about-section-centered {
  padding: 56px 24px;
}
.about-values h2 { color: #fff; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.value-card .value-icon {
  width: 48px;
  height: 48px;
  background: #f0f7f3;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-card .value-icon svg { 
  width: 24px;
  height: 24px;
}
.value-card h3 { 
  font-size: 1.05rem; 
  color: #2D2D2D; 
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}
.value-card p  { 
  font-size: 14px; 
  color: #5a5a5a; 
  margin: 0; 
  line-height: 1.6;
}

.dest-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.news-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.package-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.policy-placeholder {
  text-align: center;
  padding: 80px 24px;
  color: var(--color-muted);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  margin: 0 auto;
  max-width: 600px;
}

.policy-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px 24px 0;
}
.policy-section h2 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  margin-top: 42px;
}
.policy-section h2:first-child {
  margin-top: 0;
}
.policy-section p {
  color: var(--color-muted);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15px;
}
.policy-section ul {
  list-style-position: inside;
  margin-left: 0;
  margin-bottom: 16px;
  color: var(--color-muted);
}
.policy-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-section-centered {
    flex-direction: column;
  }
  .about-section-centered .about-block-content {
    margin-right: 0;
    margin-bottom: 32px;
  }
  .about-block-illustration {
    width: 100%;
  }
  .values-grid { 
    grid-template-columns: 1fr; 
  }
}
