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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: #1a202c;
  letter-spacing: -0.025em;
  font-style: italic;
}

h2 {
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: #1a202c;
  letter-spacing: -0.015em;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #2d3748;
  letter-spacing: -0.005em;
}

p {
  margin-bottom: 1.75rem;
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

strong, b {
  font-weight: 600;
  color: #2d3748;
}

.introductory-text {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Emotional blockquote for special emphasis */
.testimonial-quote {
  font-family: 'Crimson Text', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  color: #4a5568;
  border-left: 3px solid #f06292;
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Page header - Premium foundation style */
.page-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  width: 100%;
  overflow-x: hidden;
}

.primary-navigation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5rem;
  height: 64px;
  width: 100%;
  box-sizing: border-box;
}

.organization-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  max-width: 320px;
  overflow: hidden;
}

.organization-logo h4 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #e91e63;
  letter-spacing: -0.01em;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}

.organization-logo:hover h4 {
  color: #c2185b;
}

.organization-logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.organization-logo:hover img {
  opacity: 0.8;
}

.navigation-list {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  min-width: 0;
  flex-shrink: 1;
  overflow: hidden;
}

/* Desktop navigation positioning - centered in header */
@media (min-width: 1024px) {
  .primary-navigation {
    justify-content: space-between;
    align-items: center;
  }

  .navigation-list {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    z-index: auto;
    width: auto;
    height: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    padding: 0;
    display: flex;
    flex: 1;
    margin: 0 2rem;
  }

  .navigation-list.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .menu-trigger {
    display: none;
  }
}

.navigation-list a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.005em;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.15s ease;
  position: relative;
  padding: 0.5rem 0;
  flex-shrink: 1;
}

.navigation-list a:hover,
.navigation-list a.active {
  color: #e91e63;
}

.navigation-list a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e91e63 0%, #f06292 100%);
  transition: width 0.15s ease;
  border-radius: 1px;
}

.navigation-list a:hover::after,
.navigation-list a.active::after {
  width: 100%;
}

/* Mobile navigation toggle */
.menu-trigger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.75rem;
  background: none;
  border: none;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}

.menu-trigger:hover {
  background-color: rgba(30, 64, 175, 0.05);
}

.menu-trigger span {
  width: 22px;
  height: 2px;
  background: #4a5568;
  margin: 3px 0;
  transition: all 0.15s ease;
  transform-origin: center;
  border-radius: 1px;
}

.menu-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -5px);
}

/* Primary container - Premium foundation width */
.content-wrapper {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
}

.expanded-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Page sections - Premium visual hierarchy with layered backgrounds */
.content-block {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.content-block:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.content-block:first-child {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding-top: 9rem;
}

/* Core page sections - Premium styling */
.hero-banner {
  padding: 9rem 0 7rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  text-align: center;
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.process-overview {
  padding: 7rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.process-overview::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(234, 88, 12, 0.02) 100%);
  pointer-events: none;
}

.call-to-action {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  text-align: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.information-panel {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.information-panel:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.information-panel:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.01) 0%, transparent 100%);
  pointer-events: none;
}

/* Core page sections - Premium foundation sections */

/* Welcome section - Editorial foundation introduction */
.hero-banner {
  padding: 9rem 0 7rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  text-align: center;
  position: relative;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(30, 64, 175, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-banner .content-wrapper {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-size: 4rem;
  font-weight: 400;
  color: #1a202c;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-banner .introductory-text {
  font-size: 1.375rem;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-banner p {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

/* Steps section - Story-driven emotional timeline */
.process-overview {
  padding: 7rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.process-overview::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(234, 88, 12, 0.02) 100%);
  pointer-events: none;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.2) 0%, rgba(30, 64, 175, 0.4) 50%, rgba(30, 64, 175, 0.2) 100%);
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(30, 64, 175, 0.1);
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2.5rem 1.5rem;
  margin: 0 1rem;
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-counter {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 auto 2rem;
  position: relative;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}

.process-step p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Action section - Emotional decision moment */
.call-to-action {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  text-align: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.call-to-action .content-wrapper {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.call-to-action h2 {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: white;
  letter-spacing: -0.015em;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.call-to-action p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons - Premium emotional design */
.action-button {
  display: inline-block;
  padding: 1.5rem 3.5rem;
  background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
  position: relative;
  overflow: hidden;
}

.action-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.action-button:hover::before {
  left: 100%;
}

.action-button:hover,
.action-button:focus {
  background: linear-gradient(135deg, #c2185b 0%, #880e4f 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
}

.action-button:active {
  transform: translateY(-1px);
}

.secondary-action {
  background: transparent;
  color: #e91e63;
  border: 2px solid #e91e63;
  box-shadow: none;
}

.secondary-action:hover,
.secondary-action:focus {
  background: #e91e63;
  color: white;
  box-shadow: 0 4px 16px rgba(30, 64, 175, 0.3);
}

/* Content blocks - Premium foundation layout */
.text-content {
  max-width: 720px;
  margin: 0 auto;
}

.text-content h2 {
  text-align: left;
  margin-bottom: 3rem;
  font-size: 2.75rem;
  font-weight: 400;
  color: #1a202c;
  letter-spacing: -0.015em;
  position: relative;
}

.text-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e91e63 0%, #f06292 100%);
  border-radius: 2px;
}

.text-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  color: #2d3748;
  letter-spacing: -0.005em;
}

.text-content p {
  margin-bottom: 2.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
  font-weight: 400;
}

/* Award cards - Premium emotional design */
.reward-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.prize-item {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.prize-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e91e63 0%, #f06292 100%);
}

.prize-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.prize-item h3 {
  color: #e91e63;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.prize-item .prize-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1.5rem;
  font-family: 'Crimson Text', serif;
  font-style: italic;
}

.prize-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Lists - Premium foundation style */
.highlight-list {
  margin: 2.5rem 0;
  padding-left: 0;
}

.highlight-list li {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
}

.highlight-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #e91e63;
  font-weight: bold;
  font-size: 1.2rem;
  top: 0.1rem;
}

/* Award cards */
.reward-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.prize-item {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e8eef3;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prize-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.prize-item h3 {
  color: #2c5530;
  margin-bottom: 1rem;
}

.prize-item .prize-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a252f;
  margin-bottom: 1rem;
}

/* Compliance section - Official foundation documentation */
.regulatory-notice {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 2px solid #e2e8f0;
  color: #4a5568;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  position: relative;
}

.regulatory-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #e91e63 0%, #f06292 100%);
  border-radius: 1px;
}

.regulatory-notice p {
  margin: 0.5rem 0;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

/* Site footer */
.page-footer {
  background: #2c3e50;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #b8c5d1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Images - Local assets only, responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  filter: saturate(0.9) contrast(1.05);
}

.section-illustration {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  margin: 3.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.3);
  transition: transform 0.3s ease;
}

.section-illustration:hover {
  transform: scale(1.02);
}

/* Responsive design */
@media (max-width: 1024px) {
  .primary-navigation {
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 0 1.5rem;
  }

  .navigation-list {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #ffffff !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.25rem !important;
    z-index: 99999 !important;
    overflow-y: auto !important;
    padding: 80px 1rem 2rem !important;
    margin: 0 !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .navigation-list.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .navigation-list.active::before {
    content: '×';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #4a5568;
    cursor: pointer;
    z-index: 100000;
    transition: all 0.15s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .navigation-list.active::before:hover {
    background: #ffffff;
    border-color: #e91e63;
    color: #e91e63;
    transform: scale(1.05);
  }

  .navigation-list a {
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 1;
    padding: 0.75rem 1rem;
    width: 100%;
    max-width: 280px;
    text-align: center;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
  }

  .navigation-list a:hover,
  .navigation-list a.active {
    background-color: rgba(30, 64, 175, 0.05);
    color: #e91e63;
  }

  .organization-logo {
    max-width: 280px;
  }

  .organization-logo h4 {
    font-size: 1rem;
    max-width: 100%;
    white-space: nowrap;
    line-height: 1;
  }

  .menu-trigger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .expanded-container {
    padding: 0 1.5rem;
  }

  .primary-navigation {
    padding: 0 1.25rem;
    height: 60px;
    overflow: hidden;
  }

  .organization-logo {
    max-width: 250px;
  }

  /* Structure 5 mobile adjustments */
  .hero-banner {
    padding: 6rem 0 4rem;
  }

  .hero-banner h1 {
    font-size: 2.5rem;
  }

  .hero-banner .introductory-text {
    font-size: 1.1rem;
  }

  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    margin: 0;
    padding: 1.5rem;
  }

  .process-overview {
    padding: 4rem 0;
  }

  .call-to-action {
    padding: 3rem 0;
  }

  .content-block, .information-panel {
    padding: 4rem 0;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .reward-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-illustration {
    height: 250px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .action-button {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .content-wrapper {
    padding: 0 1rem;
  }

  .hero-banner h1 {
    font-size: 2rem;
  }

  .section-illustration {
    height: 200px;
  }

  .content-block {
    padding: 2rem 0;
  }

  .section-illustration {
    height: 200px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states */
.navigation-list a:focus,
.action-button:focus {
  outline: 2px solid #2c5530;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .page-header,
  .page-footer,
  .menu-trigger {
    display: none;
  }

  .content-block {
    page-break-inside: avoid;
  }
}
