@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --primary: #00a3e1;
  --primary-dark: #0088bd;
  --primary-light: #e6f6fc;
  --dark: #0a1628;
  --dark-soft: #1a2d4a;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #475569;
  --text-on-dark: #f1f5f9;
  --accent-contrast: #ff6b35;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --section-pad: clamp(3rem, 6vw, 5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; }

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.disclaimer-bar {
  background: var(--dark);
  color: var(--text-on-dark);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.6rem 1rem;
  line-height: 1.5;
}

.ai-disclosure-bar {
  background: #062a3d;
  color: var(--text-on-dark);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.55rem 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 163, 225, 0.25);
}

.ai-disclosure-bar a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.ai-disclosure-bar a:hover {
  color: #5cc8f0;
}

.policy-content .app-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.policy-content .app-table th,
.policy-content .app-table td {
  border: 1px solid rgba(0, 163, 225, 0.2);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.policy-content .app-table th {
  background: var(--primary-light);
  color: var(--dark);
  font-weight: 600;
}

.policy-content .ai-notice-box {
  background: rgba(0, 163, 225, 0.1);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 163, 225, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  color: var(--dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.25rem 1.25rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-dark:hover {
  background: var(--dark-soft);
  color: var(--white);
}

.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--dark);
  color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p,
.section-dark li {
  color: var(--text-on-dark);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-primary h2,
.section-primary h3 {
  color: var(--white);
}

.section-primary p,
.section-primary li {
  color: rgba(255, 255, 255, 0.95);
}

.section-light {
  background: var(--primary-light);
}

.section-alt {
  background: var(--white);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-dark .section-label {
  color: var(--accent-contrast);
}

.hero-collage {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 480px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  z-index: 2;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero-content .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.hero-images {
  position: relative;
  min-height: 400px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-img-1 {
  width: 55%;
  height: 260px;
  top: 0;
  left: 0;
  z-index: 3;
}

.hero-img-2 {
  width: 50%;
  height: 220px;
  top: 80px;
  right: 0;
  z-index: 2;
}

.hero-img-3 {
  width: 45%;
  height: 180px;
  bottom: 0;
  left: 20%;
  z-index: 1;
  border: 3px solid var(--primary);
}

.hero-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--primary);
  opacity: 0.2;
  border-radius: 50%;
  top: 10%;
  right: 10%;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card-grid .card {
  color: #000;
}

.card-grid .card h3,
.card-grid .card p {
  color: #000;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 163, 225, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 163, 225, 0.18);
}

.section-dark .card {
  background: var(--dark-soft);
  border-color: rgba(0, 163, 225, 0.25);
}

.section-dark .card-grid .card {
  background: var(--white);
}

.section-dark .card h3 {
  color: var(--white);
}

.section-dark .card p {
  color: var(--text-on-dark);
}

.section-dark .card-grid .card h3,
.section-dark .card-grid .card p {
  color: #000;
}

.section-primary .card-grid .card h3,
.section-primary .card-grid .card p {
  color: #000;
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-contrast);
  margin-bottom: 1rem;
  display: block;
}

.section-primary .card-icon {
  color: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-section--img-height {
  align-items: stretch;
}

.split-section--img-height .split-image {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.split-image .img-by-height {
  width: auto;
  height: 100%;
  min-height: 360px;
  max-height: 560px;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 163, 225, 0.15);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--accent-contrast);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .feature-list i {
  color: var(--primary);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.checklist-section {
  background: var(--white);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--primary-light);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.checklist-item:hover {
  border-color: var(--primary);
}

.checklist-item.checked {
  background: rgba(0, 163, 225, 0.15);
  border-color: var(--primary);
}

.checklist-item input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
  cursor: pointer;
}

.checklist-item label {
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
}

.checklist-progress {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--dark);
  border-radius: var(--radius);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.progress-bar {
  flex: 1;
  min-width: 200px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width var(--transition);
  width: 0%;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.calendar-event {
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.section-dark .calendar-event {
  background: var(--dark-soft);
}

.calendar-event .date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-dark .calendar-event .date {
  color: var(--accent-contrast);
}

.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid rgba(0, 163, 225, 0.2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.section-dark .faq-item {
  background: var(--dark-soft);
  border-color: rgba(0, 163, 225, 0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-dark .faq-question {
  color: var(--white);
}

.faq-question i {
  color: var(--accent-contrast);
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer-inner {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
}

.section-dark .faq-answer-inner {
  color: var(--text-on-dark);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.info-box {
  background: rgba(0, 163, 225, 0.08);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.section-dark .info-box {
  background: rgba(0, 163, 225, 0.12);
}

.two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
  list-style: disc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 {
  color: var(--white);
}

.contact-info-card a {
  color: var(--primary);
}

.contact-info-card i {
  color: var(--accent-contrast);
  margin-right: 0.5rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(0, 163, 225, 0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--light);
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.map-wrapper {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid a {
  color: var(--text-on-dark);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(241, 245, 249, 0.7);
}

.footer-contact {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--primary);
}

.footer-compliance {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 163, 225, 0.08);
  border: 1px solid rgba(0, 163, 225, 0.2);
  border-radius: var(--radius);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-on-dark);
}

.footer-compliance a {
  color: var(--primary);
  font-weight: 600;
}

.page-edu-notice {
  background: var(--primary-light);
  border-bottom: 1px solid rgba(0, 163, 225, 0.15);
  padding: 0.65rem 0;
  font-size: 0.85rem;
  color: var(--text);
}

.page-edu-notice p {
  margin: 0;
  text-align: center;
}

.page-edu-notice a {
  font-weight: 600;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--section-pad) 0;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-banner .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.cookie-banner .btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.checklist-progress .btn-outline {
  color: var(--white);
  border-color: var(--primary);
}

.checklist-progress .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(0, 163, 225, 0.12);
  color: var(--primary-dark);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.section-dark .tag {
  background: rgba(0, 163, 225, 0.25);
  color: var(--white);
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--accent-contrast);
  border-radius: 50%;
  border: 3px solid var(--white);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-images {
    min-height: 320px;
  }

  .split-section,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-image .img-by-height {
    width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    aspect-ratio: 4/3;
  }

  .two-col-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 163, 225, 0.15);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .main-nav.open {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 163, 225, 0.1);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-img-1 {
    width: 70%;
    height: 180px;
  }

  .hero-img-2 {
    width: 55%;
    height: 150px;
  }

  .hero-img-3 {
    width: 50%;
    height: 120px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
    min-width: 120px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .header-inner {
    padding: 0.5rem 0;
  }

  .logo-text {
    display: none;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .hero-images {
    min-height: 240px;
  }

  .map-wrapper iframe {
    height: 280px;
  }
}
