* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Shippori Mincho B1', serif;
  line-height: 1.8;
  color: #333;
  background-color: #fefefe;
}

html {
  scroll-padding-top: 120px;
}

/* ヘッダー */
.header {
  background: linear-gradient(to bottom, rgba(52, 140, 169, 0.4), rgba(52, 140, 169, 0.5));
  padding: 1px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(8px);
  min-height: 0;
}

.header-left {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.header-logo {
  height: 120px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  flex-shrink: 0;
  background: transparent;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
  letter-spacing: 0.03em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  border-bottom-color: white;
  opacity: 0.95;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 150px;
}

.header-phone-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  text-align: center;
  width: 100%;
}

.header-phone-number {
  font-family: 'Roboto', 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-align: center;
  width: 100%;
}

.header-phone-number:hover {
  opacity: 0.85;
}

.header-consult-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #2c5f7a;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.header-consult-btn:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.header-menu {
  display: none;
}

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 40, 60, 0.98);
  z-index: 200;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  color: white;
  padding: 0;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  background: rgba(52, 140, 169, 0.3);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu-icon {
  color: #5ab3c5;
  width: 32px;
  height: 32px;
}

.mobile-menu-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2px;
}

.mobile-menu-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 1;
}

.mobile-menu-description {
  padding: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-nav {
  padding: 20px 0;
}

.mobile-menu-section-title {
  padding: 10px 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.mobile-menu-item {
  display: block;
  padding: 15px 20px;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}

.mobile-menu-item:hover {
  background: rgba(255,255,255,0.05);
}

.mobile-menu-contact {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-contact-phone {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 10px 0;
}

.mobile-menu-contact-hours {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 5px 0;
}

.mobile-menu-contact-address {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 5px 0;
}

/* ヒーローセクション */
.hero-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)), 
              url('/static/aso-landscape.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #333;
  padding: 100px 20px 120px;
  text-align: center;
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-title {
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  margin-bottom: 35px;
  line-height: 1.3;
  text-shadow: 3px 3px 20px rgba(0,0,0,0.7), 
               0 0 50px rgba(0,0,0,0.5),
               1px 1px 3px rgba(0,0,0,0.9);
  color: white;
  filter: brightness(1.1);
}

.hero-tagline {
  font-size: 2.1rem;
  margin-bottom: 65px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: white;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.7),
               0 0 30px rgba(0,0,0,0.5),
               1px 1px 3px rgba(0,0,0,0.9);
  filter: brightness(1.1);
}

.hero-message {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 45px;
  line-height: 2.2;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7),
               0 0 25px rgba(0,0,0,0.5),
               1px 1px 3px rgba(0,0,0,0.9);
  filter: brightness(1.1);
}

.hero-submessage {
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  line-height: 2.2;
  color: white;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.7),
               0 0 25px rgba(0,0,0,0.5),
               1px 1px 3px rgba(0,0,0,0.9);
  filter: brightness(1.1);
}



/* コンテンツセクション */
.content-section {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.text-content {
  font-size: 1.08rem;
  line-height: 2.2;
  margin-bottom: 40px;
  color: #555;
}

.text-content.highlight {
  font-weight: 600;
  color: #348ca9;
  font-size: 1.15rem;
}

/* 三つの柱セクション */
.pillars-section {
  background: #f9fafb;
  padding: 80px 20px;
}

.section-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
  text-align: center;
  line-height: 1.6;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.pillar-item {
  text-align: center;
  padding: 30px 20px;
}

.pillar-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.pillar-description {
  font-size: 1.05rem;
  line-height: 2;
  color: #555;
}

/* ナビゲーションセクション */
.navigation-section {
  background: linear-gradient(to bottom, rgba(100, 160, 100, 0.15), rgba(100, 160, 100, 0.08));
  padding: 60px 20px 80px;
}

.nav-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.nav-section-subtitle {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.nav-card {
  background: white;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.nav-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(180, 210, 230, 0.3), rgba(180, 210, 230, 0.15));
  z-index: 0;
  opacity: 0.5;
}

.nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.nav-card:hover .nav-card-bg {
  opacity: 0.8;
}

.nav-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d5a7c;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.nav-subtitle {
  font-size: 0.9rem;
  color: #666;
  position: relative;
  z-index: 1;
}

/* 相談セクション */
.contact-section {
  background: linear-gradient(135deg, #1e88a8 0%, #2dbca0 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.5;
}

.contact-subtitle {
  font-size: 1.05rem;
  margin-bottom: 15px;
  opacity: 0.95;
}

.contact-message {
  font-size: 1rem;
  margin-bottom: 50px;
  opacity: 0.9;
}

.contact-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto 40px;
}

.contact-button {
  padding: 20px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  border-radius: 3px;
}

.contact-button.primary {
  background: white;
  color: #2dbca0;
}

.contact-button.primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.contact-button.outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.contact-button.outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.phone-number {
  font-size: 1.15rem;
  display: block;
  margin-top: 5px;
}

.contact-hours {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.8;
}

/* ストーリーセクション */
.story-section {
  background: linear-gradient(135deg, #165c9a 0%, #22b8a3 100%);
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50px;
  width: 150px;
  height: 100%;
  background: #000;
  transform: skewX(-15deg);
  z-index: 1;
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.story-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  opacity: 0.9;
}

.story-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.story-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  line-height: 1.8;
}

/* スタッフストーリー */
.staff-story {
  background: white;
  color: #333;
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.staff-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #165c9a;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.6;
}

.staff-content {
  font-size: 1.05rem;
  line-height: 2;
  color: #555;
  margin-bottom: 25px;
}

.staff-quote {
  background: #f0f8ff;
  padding: 30px;
  font-style: italic;
  color: #165c9a;
  border-left: 4px solid #165c9a;
  margin: 30px 0;
  line-height: 1.9;
  font-size: 1.05rem;
}

/* アクセスセクション */
.access-section {
  background: white;
  padding: 80px 20px;
  text-align: center;
}

.access-content {
  max-width: 600px;
  margin: 0 auto;
}

.access-facility-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.access-info {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #555;
  line-height: 1.8;
}

/* フッター */
.footer {
  background: #2d3e50;
  color: white;
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-section {
  margin-bottom: 40px;
  text-align: left;
}

.footer-logo-container {
  margin-bottom: 20px;
}

.footer-logo {
  height: 80px;
  width: auto;
  display: block;
}

.footer-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-info {
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.footer-nav-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #5ab3c5;
}

.footer-nav-item {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.consultation-section {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 40px;
  margin-top: 40px;
}

.consultation-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #5ab3c5;
}

.consultation-info {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.consultation-note {
  margin: 20px 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* 事業特化コピー向け拡張UI */
.hero-kicker {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.18em;
}

.hero-cta-wrap {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-cta {
  display: inline-block;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  color: #1c6f8f;
  box-shadow: 0 5px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.28);
  background: #ffffff;
}

.hero-cta.secondary {
  background: rgba(0,0,0,0.32);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.about-points,
.feature-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.about-point,
.feature-item {
  background: #f4f9fc;
  border: 1px solid #d6e9f2;
  border-radius: 8px;
  padding: 14px 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.98rem;
  color: #32576a;
}

.service-section {
  padding: 80px 20px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.service-section-soft {
  background: linear-gradient(to bottom, rgba(196, 226, 238, 0.25), rgba(196, 226, 238, 0.1));
}

.section-lead {
  max-width: 820px;
  margin: -28px auto 38px;
  color: #4f6070;
  font-size: 1rem;
  line-height: 1.9;
}

.program-grid,
.testimonial-grid,
.cv-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.program-card,
.testimonial-card,
.cv-guide-card {
  text-align: left;
  background: #fff;
  border: 1px solid #dfe9ef;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.program-card h3,
.cv-guide-card h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.15rem;
  color: #1e5d7c;
  margin-bottom: 8px;
}

.program-card p,
.cv-guide-card p {
  color: #576574;
  line-height: 1.9;
  font-size: 0.96rem;
}

.photo-proof-section {
  background: #f8fbfd;
  padding: 80px 20px;
  text-align: center;
}

.photo-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.photo-card {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid #dce8ee;
}

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

.photo-card figcaption {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #445a69;
  font-size: 0.92rem;
  padding: 12px 14px;
  text-align: left;
}

.testimonials-section {
  background: #ffffff;
}

.testimonial-card {
  border-left: 4px solid #2f8bac;
}

.testimonial-card p {
  color: #4e5e6c;
  line-height: 1.9;
}

.testimonial-card cite {
  margin-top: 10px;
  display: block;
  color: #2d6e8b;
  font-style: normal;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.usage-section {
  background: #f9fafb;
}

.usage-steps {
  list-style: none;
  counter-reset: steps;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.usage-steps li {
  counter-increment: steps;
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #dce6ee;
  color: #4d5f6f;
}

.usage-steps li::before {
  content: "STEP " counter(steps) " ";
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #2b7494;
  font-weight: 700;
  margin-right: 4px;
}

.family-section {
  background: linear-gradient(to bottom, rgba(230, 244, 249, 0.45), rgba(230, 244, 249, 0.12));
}

.cv-guide-section {
  padding: 74px 20px;
  background: #f5fafc;
  text-align: center;
}

.cv-guide-controls {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cv-guide-link {
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #1f6f90;
  border: 1px solid #8fc2d6;
  background: #ffffff;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.cv-guide-link:hover {
  background: #ebf6fb;
}

.ab-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.footer-nav-item {
  display: block;
  text-decoration: none;
}

.footer-nav-item:hover {
  color: #ffffff;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    padding: 8px 10px;
    gap: 10px;
  }
  
  .header-logo {
    height: 60px;
  }
  
  .header-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px 8px;
    justify-content: stretch;
    padding: 8px 0 6px;
  }
  
  .nav-link {
    font-size: 0.74rem;
    text-align: center;
    padding: 6px 4px;
    border-bottom: none;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
  }

  .nav-link:hover {
    border-bottom-color: transparent;
    background: rgba(255,255,255,0.14);
  }
  
  .header-right {
    gap: 10px;
  }
  
  .header-phone {
    min-width: 120px;
  }
  
  .header-phone-label {
    font-size: 0.65rem;
  }
  
  .header-phone-number {
    font-size: 0.85rem;
  }
  
  .header-consult-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .hero-section {
    padding: 60px 15px 80px;
    min-height: calc(100vh - 120px);
    background-attachment: scroll;
  }
  
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 0.18em;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.8),
                 0 0 30px rgba(0,0,0,0.6),
                 1px 1px 3px rgba(0,0,0,0.9);
  }
  
  .hero-tagline {
    font-size: 1.35rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8),
                 0 0 25px rgba(0,0,0,0.6),
                 1px 1px 3px rgba(0,0,0,0.9);
  }
  
  .hero-message {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8),
                 0 0 20px rgba(0,0,0,0.6),
                 1px 1px 3px rgba(0,0,0,0.9);
  }
  
  .hero-submessage {
    font-size: 0.95rem;
    line-height: 2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8),
                 0 0 20px rgba(0,0,0,0.6),
                 1px 1px 3px rgba(0,0,0,0.9);
  }

  .hero-kicker {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }

  .hero-cta-wrap {
    margin-top: 24px;
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero-cta {
    text-align: center;
  }
  
  .content-section {
    padding: 50px 15px;
  }
  
  .text-content {
    font-size: 1rem;
    line-height: 2;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  
  .pillar-grid {
    gap: 30px;
  }
  
  .pillar-title {
    font-size: 1.3rem;
  }
  
  .pillar-description {
    font-size: 0.95rem;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-section {
    padding: 60px 15px;
  }

  .section-lead {
    margin-top: -18px;
    margin-bottom: 24px;
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .program-card,
  .testimonial-card,
  .cv-guide-card {
    padding: 16px;
  }

  .photo-card img {
    height: 200px;
  }
  
  .story-section {
    padding: 60px 15px;
  }
  
  .story-title {
    font-size: 1.8rem;
  }
  
  .staff-title {
    font-size: 1.3rem;
  }
  
  .staff-story {
    padding: 50px 15px;
  }
  
  .staff-content {
    font-size: 0.95rem;
    line-height: 1.9;
  }
  
  .access-section {
    padding: 60px 15px;
  }
  
  .footer {
    padding: 40px 15px 20px;
  }
  
  .footer-logo {
    height: 60px;
  }
  
  .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-title {
    font-size: 1.3rem;
  }
  
  .footer-info {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pillar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto;
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
  }

  .cv-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 980px;
    margin: 0 auto;
  }

  .photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-list,
  .about-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .contact-buttons {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .consultation-section {
    grid-column: 1 / -1;
  }
  
  .copyright {
    grid-column: 1 / -1;
  }
}
