/* 取適法簡易診断ツール - スタイルシート */

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 基本スタイル */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2rem 1rem;
  width: 100%;
}

/* ヘッダー */
.header {
  text-align: center;
  margin-bottom: 2.5rem;
  width: 100%;
}

.header-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.header-icon {
  background: #3b82f6;
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.header-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
  display: block;
}

.header-title {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(to right, #2563eb, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.header-description {
  max-width: 48rem;
  margin: 0 auto 1rem auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.header-description p {
  margin-bottom: 0.75rem;
  line-height: 1.75;
  font-size: 0.95rem;
  word-break: break-word;
}

.header-description p:last-child {
  margin-bottom: 0;
}

.highlight-blue {
  color: #2563eb;
  text-decoration: underline;
  text-decoration-color: #60a5fa;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.highlight-green {
  color: #16a34a;
  text-decoration: underline;
  text-decoration-color: #4ade80;
  text-decoration-thickness: 2px;
  font-weight: 500;
}

.header-notice {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}

/* メインコンテンツ */
main {
  width: 100%;
  clear: both;
  margin-top: 1rem;
}

/* イントロカード */
.intro-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  border: 1px solid #dbeafe;
  max-width: 780px;
  margin: 0 auto 2rem auto;
  width: 100%;
}

.intro-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  word-break: keep-all;
}

.intro-lead {
  text-align: center;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
  word-break: break-word;
}

.intro-actions {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0 0.75rem 0;
}

.btn-start {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.25);
  min-height: 48px;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.btn-start:hover {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(59, 130, 246, 0.28);
}

.btn-start:active {
  transform: translateY(0);
}

.btn-start:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

.intro-note {
  text-align: center;
  color: #64748b;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* フォームカード */
.form-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid #dbeafe;
  width: 100%;
  margin: 0 auto;
}

/* プログレスバー */
.progress-wrapper {
  margin-bottom: 1.75rem;
  width: 100%;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.75rem;
  font-weight: 500;
  gap: 0.5rem;
}

.progress-percentage {
  color: #2563eb;
  white-space: nowrap;
}

.progress-bar-bg {
  width: 100%;
  background: #eff6ff;
  border-radius: 9999px;
  height: 0.75rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  height: 100%;
  border-radius: 9999px;
  transition: width 0.5s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 質問 */
.question-wrapper {
  margin-bottom: 1.75rem;
  width: 100%;
}

.question-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.6;
  word-break: break-word;
  width: 100%;
}

.question-indicator {
  width: 0.4rem;
  height: 1.5rem;
  background: #3b82f6;
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

#question-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

/* 選択肢 */
.options-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.option-label {
  display: block;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.option-label:hover {
  border-color: #93c5fd;
  background: rgba(239, 246, 255, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.option-label:active {
  transform: scale(0.98);
}

.option-label.selected {
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}

.option-label:focus-within {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}

.option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.option-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.option-indicator {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: #fff;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.option-indicator.checkbox {
  border-radius: 0.5rem;
}

.option-label.selected .option-indicator {
  border-color: #3b82f6;
  background: #3b82f6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.option-indicator-inner {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.checkmark {
  width: 1rem;
  height: 1rem;
  color: #fff;
}

.option-text {
  color: #475569;
  line-height: 1.6;
  word-break: break-word;
  font-size: 0.95rem;
}

.option-label.selected .option-text {
  color: #0f172a;
  font-weight: 500;
}

/* 情報リンク */
.option-info-link,
.question-info-link {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 0.875rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem 0;
  margin: 0;
  transition: color 0.2s ease;
  text-align: left;
  font-weight: 400;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  word-break: break-word;
}

.question-info-link {
  margin-left: 0.5rem;
}

.option-info-link:hover,
.question-info-link:hover {
  color: #1d4ed8;
}

.option-info-link:active,
.question-info-link:active {
  opacity: 0.7;
}

.option-info-link:focus-visible,
.question-info-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ナビゲーション */
.navigation {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  font-size: 1rem;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn:not(:disabled):active {
  transform: scale(0.97);
}

.btn:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

.btn-prev {
  border: 2px solid #e2e8f0;
  color: #475569;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-prev:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.btn-next {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
  color: #fff;
  margin-left: auto;
  padding: 0.875rem 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 250px;
}

.btn-next:hover:not(:disabled) {
  background: linear-gradient(to right, #2563eb, #3b82f6);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* 結果カード */
.result-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid #dbeafe;
  width: 100%;
  margin: 0 auto;
}

.result-section {
  margin-bottom: 1.75rem;
  width: 100%;
}

.result-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #dbeafe;
  margin-bottom: 1.75rem;
  width: 100%;
}

.result-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.result-icon {
  padding: 1rem;
  border-radius: 1rem;
}

.result-icon.success {
  background: #f0fdf4;
}

.result-icon.warning {
  background: #fffbeb;
}

.result-icon svg {
  width: 3.5rem;
  height: 3.5rem;
  display: block;
}

.result-icon.success svg {
  color: #22c55e;
}

.result-icon.warning svg {
  color: #f59e0b;
}

.result-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  word-break: keep-all;
}

.result-summary {
  font-size: 1.05rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.6;
  word-break: break-word;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.section-icon.blue {
  background: #dbeafe;
}

.section-icon.slate {
  background: #f1f5f9;
}

.section-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.section-icon.blue svg {
  color: #2563eb;
}

.section-icon.slate svg {
  color: #475569;
}

.section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
}

.company-info-box {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid #dbeafe;
  width: 100%;
}

.company-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  word-break: break-word;
}

.company-info-item:last-child {
  margin-bottom: 0;
}

.company-info-label {
  color: #64748b;
  min-width: 80px;
  font-weight: 500;
  font-size: 0.95rem;
}

.company-info-value {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.95rem;
  word-break: break-word;
}

.details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.detail-block {
  background: linear-gradient(135deg, #eff6ff 0%, #faf5ff 100%);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 2px solid #bfdbfe;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.detail-text {
  color: #475569;
  line-height: 1.75;
  white-space: pre-line;
  font-size: 0.95rem;
  word-break: break-word;
}

.notice-box {
  background: linear-gradient(135deg, #fef2f2 0%, #fce7f3 100%);
  border-left: 4px solid #f87171;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.notice-text {
  font-size: 0.875rem;
  color: #991b1b;
  line-height: 1.75;
  word-break: break-word;
}

.notice-text strong {
  color: #7f1d1d;
}

.reset-wrapper {
  padding-top: 1.5rem;
  border-top: 1px solid #dbeafe;
  width: 100%;
}

.btn-reset {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: #f1f5f9;
  color: #475569;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 1rem;
  min-height: 48px;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.btn-reset:hover {
  background: #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-reset:active {
  transform: scale(0.98);
}

.btn-reset:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

/* フッター */
.footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  width: 100%;
  clear: both;
}

.footer p {
  margin-bottom: 0.25rem;
  line-height: 1.6;
  word-break: break-word;
}

.pagelinkin {
  margin-top: 0.5rem;
}

.innerLink {
  color: #2563eb;
  text-decoration: underline;
  font-weight: 500;
}

.innerLink:hover {
  color: #1d4ed8;
}

.innerLink:active {
  opacity: 0.7;
}

/* モーダル */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
  -webkit-overflow-scrolling: touch;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background: white;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: slideUp 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  padding-right: 1rem;
  line-height: 1.5;
  word-break: break-word;
}

.modal-close {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  min-width: 40px;
  min-height: 40px;
}

.modal-close:hover {
  background-color: #f1f5f9;
  color: #1e293b;
}

.modal-close:active {
  background-color: #e2e8f0;
}

.modal-close:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.modal-close svg {
  display: block;
}

.modal-body {
  padding: 1.25rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.75;
}

.modal-body p {
  margin: 0;
  white-space: pre-line;
  word-break: break-word;
}

/* スマホ向けレスポンシブ（640px以下） */
@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 1rem 0.875rem;
  }

  .header {
    margin-bottom: 1.5rem;
  }

  .header-title-wrapper {
    gap: 0.625rem;
    margin-bottom: 1.25rem;
  }

  .header-icon {
    padding: 0.625rem;
  }

  .header-icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .header-description {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }

  .header-description p {
    font-size: 0.85rem;
    margin-bottom: 0.625rem;
    line-height: 1.7;
  }

  .header-notice {
    font-size: 0.8rem;
    padding: 0.625rem 0.875rem;
    margin-top: 0.875rem;
  }

  main {
    margin-top: 0;
  }

  .intro-card {
    padding: 1.5rem 1.125rem;
    margin-bottom: 1.5rem;
  }

  .intro-title {
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
  }

  .intro-lead {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.65;
  }

  .btn-start {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .form-card,
  .result-card {
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .progress-wrapper {
    margin-bottom: 1.5rem;
  }

  .progress-info {
    font-size: 0.8125rem;
  }

  .question-wrapper {
    margin-bottom: 1.5rem;
  }

  .question-title {
    font-size: 1.05rem;
    margin-bottom: 1.125rem;
    line-height: 1.6;
  }

  .question-indicator {
    width: 0.3rem;
    height: 1.25rem;
    margin-top: 0.3rem;
  }

  .option-label {
    padding: 0.875rem;
  }

  .option-content {
    gap: 0.625rem;
  }

  .option-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .option-info-link,
  .question-info-link {
    font-size: 0.8rem;
    min-height: 36px;
  }

  .navigation {
    gap: 0.625rem;
    margin-top: 1rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    min-height: 44px;
  }

  .btn-next {
    padding: 0.75rem 1.25rem;
    max-width: none;
    flex: 1;
  }

  .btn svg {
    width: 18px;
    height: 18px;
  }

  .result-icon svg {
    width: 2.75rem;
    height: 2.75rem;
  }

  .result-title {
    font-size: 1.2rem;
  }

  .result-summary {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1rem;
  }

  .company-info-box {
    padding: 0.875rem;
  }

  .company-info-label,
  .company-info-value {
    font-size: 0.85rem;
  }

  .detail-block {
    padding: 1rem;
    border-radius: 0.875rem;
  }

  .detail-text {
    font-size: 0.85rem;
  }

  .footer {
    font-size: 0.8rem;
    padding: 0.875rem 1rem;
    margin-top: 2rem;
  }

  .modal-content {
    max-height: 90vh;
    border-radius: 0.875rem;
  }

  .modal-header {
    padding: 1rem;
  }

  .modal-title {
    font-size: 1rem;
    padding-right: 0.75rem;
  }

  .modal-body {
    padding: 1rem;
    font-size: 0.85rem;
  }
}

/* タブレット向け（641px〜768px） */
@media (min-width: 641px) and (max-width: 768px) {
  .container {
    padding: 1.75rem 1rem;
  }

  .header-title {
    font-size: 1.75rem;
  }

  .form-card,
  .result-card {
    padding: 1.5rem;
  }

  .question-title {
    font-size: 1.2rem;
  }

  .result-title {
    font-size: 1.4rem;
  }
}

/* 横向きスマホ（896px以下で横向き） */
@media (max-width: 896px) and (orientation: landscape) {
  .container {
    padding: 0.875rem 1rem;
  }

  .header {
    margin-bottom: 1rem;
  }

  .header-title {
    font-size: 1.5rem;
  }

  .intro-card {
    padding: 1.25rem 1rem;
  }

  .modal-content {
    max-height: 95vh;
  }
}

/* 非常に小さい画面（360px以下） */
@media (max-width: 360px) {
  .container {
    padding: 0.875rem 0.75rem;
  }

  .header-title {
    font-size: 1.25rem;
  }

  .intro-title {
    font-size: 1.1rem;
  }

  .question-title {
    font-size: 1rem;
  }

  .option-text {
    font-size: 0.8125rem;
  }

  .btn {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    gap: 0.375rem;
  }

  .btn svg {
    width: 16px;
    height: 16px;
  }
}

/* 大画面向け（1025px以上） */
@media (min-width: 1025px) {
  .container {
    padding: 3rem 1rem;
  }

  .header {
    margin-bottom: 3rem;
  }

  .form-card,
  .result-card {
    padding: 2rem;
  }

  .question-title {
    font-size: 1.5rem;
  }
}



