@charset "utf-8";
/*
 * story.css — 開発ストーリーページ専用スタイル
 * Template: page-story.php
 * 読み込み: functions.php の is_page('story') 条件でエンキュー推奨
 */

/* ============================================================
   CSS Variables（このページ専用カラー）
   base.css の :root を上書きせず、別名で定義
============================================================ */
:root {
  --st-orange: #f97316;
  --st-orange-dark: #c95a06;
  --st-orange-deep: #7c2d0a;
  --st-orange-mid: #fdba74;
  --st-orange-light: #fee8d5;
  --st-orange-pale: #fff7f1;
  --st-teal: #4bbfad;
  --st-teal-light: #e8f8f6;
  --st-dark: #1c1208;
  --st-mid: #3d2b1a;
  --st-text: #3a2a1c;
  --st-muted: #8a7060;
  --st-line: #edd9c8;
  --st-white: #ffffff;
  --st-bg: #fffaf6;
}

/* ============================================================
   コンテナ（base.css の .fixedcontainer と別クラスで管理）
============================================================ */
.story-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
/* ビジョンセクションのみ広め */
.story-container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   スクロールリビール
   ※ base.css の .fade-in / .reveal と統合済み（common.js で管理）
   → .is-visible で表示（PHPテンプレートの common.js と連携）
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.32s;
}
.reveal-delay-4 {
  transition-delay: 0.44s;
}

/* ============================================================
   セクション共通
============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--st-orange);
  margin-bottom: 18px;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--st-orange);
  border-radius: 1px;
}
.section-label::after {
  content: "";
  display: block;
  width: 12px;
  height: 1.5px;
  background: var(--st-orange);
}
/* 数字セクション用：中央揃え */
.section-label--center {
  display: flex;
  justify-content: center;
}

.section-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(22px, 3.6vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--st-dark);
  margin-bottom: 16px;
}
.section-heading .accent {
  color: var(--st-orange);
}
.section-heading em {
  font-style: normal;
  color: var(--st-orange);
  position: relative;
  display: inline-block;
}
.section-heading em::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fb923c, #fbbf24);
  border-radius: 2px;
  opacity: 0.55;
}
/* 数字セクション用：中央揃え */
.section-heading--center {
  text-align: center;
}

.section-sub {
  font-size: 15px;
  color: var(--st-muted);
  line-height: 1.95;
  margin-bottom: 56px;
  max-width: 640px;
  padding-left: 16px;
  border-left: 3px solid #fcd9b0;
}

/* 数字セクションのヘッドラップ */
.section-numbers__head {
  text-align: center;
  margin-bottom: 48px;
}
.section-numbers__head .section-sub {
  margin: 0 auto;
  text-align: left; /* 中央寄せしつつ左ボーダーを生かす */
}

/* ============================================================
   ① HERO
============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 24px 110px;
  overflow: hidden;
  background: linear-gradient(145deg, #7c2d0a 0%, #c95a06 45%, #f97316 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse at 70% 20%,
      rgba(255, 220, 150, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 10% 80%,
      rgba(124, 45, 10, 0.5) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__deco--1 {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -130px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__deco--2 {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: 8%;
  background: rgba(255, 255, 255, 0.04);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 36px;
  animation: hFadeIn 0.8s ease both;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 5.5vw, 54px);
  line-height: 1.4;
  color: #fff;
  margin-bottom: 28px;
  animation: hFadeIn 0.9s ease 0.1s both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  transform: rotate(-0.8deg);
}
.hero__lead {
  font-size: clamp(13px, 1.9vw, 15px);
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.1;
  max-width: 580px;
  margin: 0 auto 48px;
  animation: hFadeIn 1s ease 0.2s both;
}
.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: hFadeIn 1s ease 0.4s both;
}
.hero__scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes hFadeIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* ============================================================
   ② 課題セクション
============================================================ */
.section-pain {
  padding: 100px 0 90px;
  background: url(../img/tetote/back.png) center / cover no-repeat;
  position: relative;
}
.section-pain::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--st-line), transparent);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  position: relative;
  background: var(--st-orange-pale);
  border: 1.5px solid var(--st-orange-light);
  border-radius: 18px;
  padding: 30px 24px 28px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.pain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--st-orange), var(--st-orange-mid));
}
.pain-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.14);
  border-color: var(--st-orange-mid);
}
.pain-card__num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.1);
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 14px;
  user-select: none;
}
.pain-card__icon {
  font-size: 34px;
  margin-bottom: 16px;
}
.pain-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--st-dark);
  margin-bottom: 10px;
  line-height: 1.55;
}
.pain-card__body {
  font-size: 13px;
  color: var(--st-muted);
  line-height: 1.9;
}

/* ============================================================
   ③ タイムライン
============================================================ */
.section-story {
  padding: 100px 0;
  background: url(../img/tetote/y-bk.jpg) no-repeat center / cover;
  position: relative;
  overflow: hidden;
}
.section-story::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* 開発者写真 + 見出し横並び */
.story-intro-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}
.story-intro-text {
  flex: 1;
}
.developer-photo-wrapper {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 5px 15px rgba(255, 152, 0, 0.15);
}
.developer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* タイムライン本体 */
.timeline {
  position: relative;
  padding-left: 52px;
  list-style: none;
  margin: 0;
  padding-top: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--st-orange) 0%,
    var(--st-orange-mid) 70%,
    transparent 100%
  );
}
.timeline-item {
  position: relative;
  margin-bottom: 64px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--st-white);
  border: 3px solid var(--st-orange);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12);
  z-index: 1;
}

.timeline-year {
  display: inline-block;
  background: var(--st-orange);
  color: var(--st-white);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.timeline-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(18px, 2.6vw, 23px);
  font-weight: 900;
  color: var(--st-dark);
  margin-bottom: 16px;
  line-height: 1.5;
}
/* 最後のタイムラインアイテムのアクセントカラー */
.timeline-title--accent {
  color: var(--st-orange);
}

.timeline-body {
  font-size: 15px;
  line-height: 2.05;
  color: var(--st-text);
  max-width: 660px;
}
.timeline-body p + p {
  margin-top: 14px;
}
.timeline-body strong {
  color: var(--st-orange-dark);
  font-weight: 700;
}

.quote-box {
  background: var(--st-white);
  border-left: 4px solid var(--st-orange);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 22px 0;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.07);
  width: 100%;
}
.quote-box p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--st-mid);
  font-style: italic;
}

/* 写真 + テキスト横並び */
.timeline-content-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.timeline-text {
  flex: 1;
}
.timeline-img-small {
  flex-shrink: 0;
  width: 180px;
}
.timeline-img-small img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 画像ラッパー */
.img-overlay-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
}
.img-overlay-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.ribbon-tag {
  position: absolute;
  top: 10px;
  right: -24px;
  background: #e8627b;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 32px 4px 12px;
  transform: rotate(15deg);
  white-space: nowrap;
}

/* ============================================================
   ④ ビジョン
============================================================ */
.section-vision {
  padding: 100px 0 120px;
  background: url(../img/tetote/gray-back.jpg) no-repeat center / cover;
  position: relative;
  overflow: hidden;
}
.section-vision::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(251, 146, 60, 0.15) 0%,
    rgba(253, 186, 116, 0.08) 50%,
    transparent 70%
  );
  pointer-events: none;
}
.section-vision::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(253, 186, 116, 0.18) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.vision-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: grid;
  grid-template-columns: repeat(5, 10px);
  gap: 8px;
  opacity: 0.25;
}
.vision-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ea7422;
  display: block;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.vision-card {
  background: #ffffff;
  border: 1.5px solid #fde8cc;
  border-radius: 22px;
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-color-a), var(--card-color-b));
  border-radius: 22px 22px 0 0;
}
.vision-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 48px rgba(234, 116, 34, 0.12),
    0 4px 16px rgba(234, 116, 34, 0.06);
  border-color: #fbc884;
}
.vision-card:nth-child(1) {
  --card-color-a: #fb923c;
  --card-color-b: #fbbf24;
}
.vision-card:nth-child(2) {
  --card-color-a: #f97316;
  --card-color-b: #fb923c;
}
.vision-card:nth-child(3) {
  --card-color-a: #ea7422;
  --card-color-b: #fdba74;
}
.vision-card:nth-child(4) {
  --card-color-a: #fbbf24;
  --card-color-b: #f97316;
}

.vision-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 52px;
  font-weight: 900;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fde8cc;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.vision-card__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.vision-card__icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision-card__icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}
.vision-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a0f08;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
.vision-card__body {
  font-size: 13.5px;
  color: #7a5235;
  line-height: 1.95;
  position: relative;
  z-index: 1;
}

.vision-town {
  margin-top: 60px;
  text-align: center;
}
.vision-town img {
  margin: 0 auto;
}

/* ============================================================
   ⑤ 代表メッセージ
============================================================ */
.section-message {
  padding: 100px 0;
  background: url(../img/tetote/back.png) center / cover no-repeat;
}
.message-wrap {
  background: var(--st-orange-pale);
  border-radius: 24px;
  padding: 60px 64px;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--st-orange-light);
}
.message-wrap::before {
  content: "\201C";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 240px;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.07);
  position: absolute;
  top: -30px;
  left: 20px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.message-text {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 2.25;
  color: var(--st-text);
  margin-bottom: 44px;
}
.message-text strong {
  color: var(--st-orange-dark);
  font-weight: 700;
}

.message-sig {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.message-sig__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--st-dark);
  margin-bottom: 4px;
}
.message-sig__role {
  font-size: 12px;
  color: var(--st-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   ⑥ 数字
============================================================ */
.section-numbers {
  padding: 80px 0;
  background: var(--st-bg);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--st-line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(249, 115, 22, 0.06);
}
.number-item {
  background: var(--st-white);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.25s;
}
.number-item:hover {
  background: var(--st-orange-pale);
}
.number-item__num {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(40px, 6vw, 62px);
  font-weight: 900;
  color: var(--st-orange);
  line-height: 1;
  margin-bottom: 12px;
}
.number-item__num span {
  font-size: 0.48em;
  vertical-align: super;
  margin-left: 2px;
}
.number-item__label {
  font-size: 13px;
  color: var(--st-muted);
  line-height: 1.75;
}

/* ============================================================
   ⑦ CTA
============================================================ */
.section-cta {
  padding: 100px 0;
  background: linear-gradient(#ff6b00, #ff8c1a);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(255, 255, 255, 0.07) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 20%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 45%
    );
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  color: var(--st-white);
  margin-bottom: 18px;
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
}
.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin-bottom: 48px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 50px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn--white {
  background: var(--st-white);
  color: var(--st-orange-dark);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}
.btn--white:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.btn--outline {
  background: transparent;
  color: var(--st-white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--st-white);
}
.btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .story-intro-flex {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .timeline-content-inner {
    flex-direction: column-reverse;
  }
  .timeline-img-small {
    width: 100%;
    max-width: 300px;
    text-align: center;
    margin: auto;
  }
  .vision-cards {
    grid-template-columns: 1fr;
  }
  .vision-card__head {
    gap: 14px;
  }
  .vision-card__icon {
    width: 68px;
    height: 68px;
  }
  .vision-card__icon img {
    width: 52px;
    height: 52px;
  }
  .vision-card__title {
    font-size: 16px;
  }
  .section-vision {
    padding: 70px 0 90px;
  }
  .message-wrap {
    padding: 36px 24px;
  }
  .message-wrap::before {
    font-size: 160px;
    top: -15px;
  }
  .numbers-grid {
    grid-template-columns: 1fr;
  }
  .section-sub {
    margin-bottom: 44px;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 70px 20px 86px;
    min-height: 440px;
  }
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .timeline {
    padding-left: 34px;
  }
  .timeline::before {
    left: 10px;
  }
  .timeline-item::before {
    left: -29px;
    width: 15px;
    height: 15px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-pain {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-story {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-vision {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-message {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-numbers {
    padding-left: 20px;
    padding-right: 20px;
  }
}
