/* ===========================================
   キューラボ 国語オンライン個別指導 LP
   楽しげ・安心感のあるデザイン
   =========================================== */

/* ----- CSS Variables ----- */
:root {
  /* Colors - 青 + オレンジの活気ある配色 */
  --color-primary: #3b82f6;
  --color-primary-dark: #2563eb;
  --color-primary-light: #dbeafe;
  --color-accent: #f97316;
  --color-accent-light: #ffedd5;
  --color-success: #10b981;
  --color-success-light: #d1fae5;

  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-text-muted: #9ca3af;

  --color-bg: #ffffff;
  --color-bg-warm: #fffbeb;
  --color-bg-cool: #eff6ff;
  --color-bg-gray: #f9fafb;

  --color-border: #e5e7eb;

  /* Typography */
  --font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.8;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;

  /* Layout */
  --container-max: 1100px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

strong {
  color: var(--color-primary-dark);
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 55px;
  width: auto;
}

.nav-list {
  display: flex;
  gap: var(--spacing-xs);
  align-items: center;
}

.nav-list a {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--color-text);
  padding: 0.5rem 0.8rem;
  border-radius: var(--border-radius);
  transition: all 0.2s ease;
}

.nav-list a:hover {
  background: var(--color-bg-cool);
  color: var(--color-primary);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
  font-weight: bold;
}

.nav-cta:hover {
  background: #ea580c !important;
  transform: translateY(-1px);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-line {
  background: #06C755;
  color: #fff;
}

.btn-line:hover {
  background: #05a647;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-cta {
  animation: pulse 2s infinite;
}

/* LINE公式ボタン */
.line-btn {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.line-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(6, 199, 85, 0.6); }
}

/* ----- Hero Section ----- */
.hero {
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 50%, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--spacing-xl);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding-bottom: 100px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius-full);
  margin-bottom: var(--spacing-md);
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
  color: var(--color-text);
}

.hero-title .highlight {
  color: var(--color-accent);
  position: relative;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--color-accent-light);
  z-index: -1;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.hero-target {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1rem;
  margin-bottom: var(--spacing-lg);
}

.target-badge {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-full);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: var(--spacing-sm);
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ----- Section Common ----- */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.title-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.title-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-lead {
  text-align: center;
  color: var(--color-text-light);
  margin-top: calc(var(--spacing-xl) * -1 + var(--spacing-md));
  margin-bottom: var(--spacing-lg);
}

.section-title-white {
  color: #fff;
}

/* ----- Problem Section ----- */
.section-problem {
  background: var(--color-bg);
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.problem-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: var(--color-bg-gray);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--color-text-muted);
}

.problem-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.problem-item p {
  font-size: 0.95rem;
}

.problem-solution {
  text-align: center;
}

.solution-arrow {
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.solution-text {
  font-size: 1.5rem;
  font-weight: bold;
}

.solution-highlight {
  color: var(--color-accent);
  font-size: 1.8rem;
}

.sp-only {
  display: none;
}

/* ----- About Section ----- */
.section-about {
  background: var(--color-bg-cool);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.about-lead {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.about-highlight {
  background: #fff;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-primary-light);
}

.about-highlight p {
  font-size: 1rem;
  line-height: 2;
}

.about-highlight .big {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-primary);
  margin: 0.5rem 0;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ----- Method Section ----- */
.section-method {
  background: var(--color-bg);
}

.method-list {
  max-width: 800px;
  margin: 0 auto;
}

.method-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-bg-cool) 0%, #fff 100%);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.method-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.method-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.method-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}

.method-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.method-cta {
  text-align: center;
  margin-top: var(--spacing-lg);
}

.method-note {
  display: inline-block;
  background: var(--color-accent-light);
  color: var(--color-accent);
  font-weight: bold;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--border-radius-full);
}

/* ----- Style Section ----- */
.section-style {
  background: var(--color-bg-warm);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.style-card {
  background: #fff;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}

.style-card:hover {
  transform: translateY(-5px);
}

.style-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.style-card h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.style-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* ----- Price Section ----- */
.section-price {
  background: var(--color-bg);
}

.price-table {
  max-width: 550px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-primary-light);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row-main {
  background: linear-gradient(135deg, var(--color-bg-cool) 0%, var(--color-primary-light) 100%);
}

.price-label {
  font-weight: bold;
  font-size: 0.95rem;
}

.price-value {
  text-align: right;
}

.price-num {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--color-primary);
}

.price-num.large {
  font-size: 1.8rem;
  color: var(--color-accent);
}

.price-value small {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.3rem;
}

.price-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: var(--spacing-md);
}

/* ----- Teacher Section ----- */
.section-teacher {
  background: var(--color-bg-cool);
}

.teacher-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-xl);
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.teacher-photo img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
}

.teacher-name {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.teacher-name small {
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-text-light);
}

.teacher-badges {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
}

.teacher-badges li {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 0.8rem;
  border-radius: var(--border-radius-full);
}

.teacher-career p {
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
}

.teacher-trivia {
  background: var(--color-accent-light);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius);
  margin-top: var(--spacing-sm);
}

.teacher-sns {
  margin-top: var(--spacing-md);
  font-size: 0.9rem;
}

/* ----- Flow Section ----- */
.section-flow {
  background: var(--color-bg);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--spacing-sm);
  max-width: 1000px;
  margin: 0 auto;
}

.flow-item {
  text-align: center;
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -0.8rem;
  top: 25px;
  color: var(--color-text-muted);
  font-size: 1.2rem;
}

.flow-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto var(--spacing-sm);
  box-shadow: var(--shadow-sm);
}

.flow-content h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.flow-content p {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* ----- Requirements Section ----- */
.section-requirements {
  background: var(--color-bg-gray);
}

.requirements-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  max-width: 900px;
  margin: 0 auto;
}

.requirements-item {
  background: #fff;
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.req-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.requirements-item h3 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

.requirements-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ----- FAQ Section ----- */
.section-faq {
  background: var(--color-bg);
}

.faq-group {
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.faq-category {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  background: var(--color-bg-gray);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-item dt {
  font-weight: bold;
  padding: var(--spacing-md);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.q-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.faq-item dd {
  padding: 0 var(--spacing-md) var(--spacing-md);
  padding-left: calc(var(--spacing-md) + 28px + var(--spacing-sm));
  color: var(--color-text-light);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-left: calc(-28px - var(--spacing-sm));
}

.a-mark {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ----- Contact Section ----- */
.section-contact {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
  color: #fff;
  text-align: center;
  padding: var(--spacing-2xl) 0;
}

.contact-lead {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

.contact-note {
  font-size: 0.85rem;
  margin-top: var(--spacing-sm);
  opacity: 0.8;
}

/* ----- Footer ----- */
.footer {
  background: #1f2937;
  color: #fff;
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  height: 40px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .style-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
  }

  .flow-item:not(:last-child)::after {
    display: none;
  }

  .requirements-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --font-size-base: 15px;
  }

  .header-inner {
    flex-direction: column;
    height: auto;
    padding: var(--spacing-sm) var(--spacing-md);
    gap: var(--spacing-sm);
  }

  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
  }

  .nav-list a {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-target {
    justify-content: center;
  }

  .hero-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .sp-only {
    display: inline;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .style-grid,
  .requirements-list {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
  }

  .price-value {
    text-align: left;
  }

  .teacher-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .teacher-photo {
    max-width: 250px;
    margin: 0 auto;
  }

  .teacher-badges {
    justify-content: center;
  }

  .teacher-career {
    text-align: left;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
}

/* ===========================================
   サブページ用スタイル
   =========================================== */

.page-content {
  padding: var(--spacing-xl) 0 var(--spacing-2xl);
  min-height: 60vh;
}

.page-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--color-primary);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--color-primary-light);
}

.legal-content p {
  margin-bottom: var(--spacing-sm);
}

.legal-content ol,
.legal-content ul {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
}

.legal-content ol {
  list-style: decimal;
}

.legal-content ul {
  list-style: disc;
}

.legal-content li {
  margin-bottom: var(--spacing-xs);
}

.legal-content ol ol,
.legal-content ol ul,
.legal-content ul ul {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
}

.legal-footer {
  text-align: right;
  margin-top: var(--spacing-lg);
  font-weight: bold;
}

.contact-info {
  background: var(--color-bg-gray);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  margin: var(--spacing-sm) 0;
}

.contact-info p {
  margin-bottom: var(--spacing-xs);
}

/* サブページCTA */
.page-cta {
  text-align: center;
  margin-top: var(--spacing-xl);
  padding: var(--spacing-lg);
  background: var(--color-bg-cool);
  border-radius: var(--border-radius-lg);
}

.page-cta-text {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

/* ロゴフォールバック用テキスト */
.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--color-primary);
}

.footer-logo-text {
  font-size: 1rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.9);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-md) 0;
}

.info-table th,
.info-table td {
  padding: var(--spacing-md);
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.info-table th {
  width: 200px;
  background: var(--color-bg-cool);
  font-weight: bold;
  color: var(--color-primary);
}

.info-table td {
  background: #fff;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.5rem;
  }

  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: var(--spacing-xs);
    border-bottom: none;
  }

  .info-table td {
    padding-top: 0;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
  }
}
