:root {
  --color-primary: #1a365d;
  --color-secondary: #c9a227;
  --color-accent: #e8d5a3;
  --color-dark: #0f1f33;
  --color-light: #f7f5f0;
  --color-white: #ffffff;
  --color-text: #2d3748;
  --color-muted: #64748b;
  --color-border: #e2e8f0;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-accent: 'Trebuchet MS', 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-secondary);
}

img, svg {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-desktop a {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

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

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

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

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 99;
  padding: 2rem;
  overflow-y: auto;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-accent);
  font-size: 1.125rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  padding: 4rem 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-accent);
  max-width: 600px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-feature svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: #b8922a;
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

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

.btn-light:hover {
  background: var(--color-light);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--color-light);
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--color-muted);
}

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex: 1 1 100%;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* Service Cards */
.service-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex: 1 1 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1.5rem;
}

.service-header h3 {
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.service-price {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.service-body {
  padding: 1.5rem;
}

.service-body p {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
}

/* Statistics */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  flex: 1 1 45%;
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
}

.stat-label {
  color: var(--color-accent);
  font-size: 0.95rem;
}

/* Testimonials */
.testimonial {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex: 1 1 100%;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-main);
  font-size: 4rem;
  color: var(--color-accent);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-text {
  padding-left: 2rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar svg {
  width: 24px;
  height: 24px;
}

.author-info strong {
  display: block;
  color: var(--color-primary);
}

.author-info span {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--color-muted);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Process Steps */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.process-content h3 {
  margin-bottom: 0.5rem;
}

.process-content p {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-content h4 {
  margin-bottom: 0.25rem;
}

.feature-content p {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-card {
  flex: 1 1 100%;
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-details strong {
  display: block;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.contact-details span,
.contact-details a {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Milestones */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  transform: translateX(-5px);
}

.timeline-year {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.timeline-item h4 {
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.value-item {
  flex: 1 1 100%;
  background: var(--color-white);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-secondary);
}

.value-item h4 {
  margin-bottom: 0.5rem;
}

.value-item p {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #b8922a 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--color-dark);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1 1 100%;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-family: var(--font-accent);
  font-weight: 700;
}

.footer-logo svg {
  width: 36px;
  height: 36px;
}

.footer-col p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--color-muted);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Legal Pages */
.legal-content {
  padding: 3rem 0;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

/* Thank You Page */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1.25rem;
  z-index: 1000;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-text {
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--color-secondary);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-accept {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.cookie-btn-reject {
  background: transparent;
  border: 1px solid var(--color-muted);
  color: var(--color-white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--color-secondary);
  text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--color-white);
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.cookie-modal-close svg {
  width: 24px;
  height: 24px;
}

.cookie-modal-body {
  padding: 1.25rem;
}

.cookie-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-option-header strong {
  color: var(--color-primary);
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-border);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-secondary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-option p {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

.cookie-modal-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 0.75rem;
}

.cookie-modal-footer .btn {
  flex: 1;
}

/* Highlight Panel */
.highlight-panel {
  background: var(--color-accent);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}

.highlight-panel h3 {
  color: var(--color-dark);
}

.highlight-panel p {
  color: var(--color-primary);
}

/* Quote Block */
.quote-block {
  background: var(--color-light);
  border-left: 4px solid var(--color-secondary);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
}

.quote-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.quote-author {
  font-weight: 600;
  color: var(--color-secondary);
}

/* Comparison Table */
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-row {
  display: flex;
  flex-wrap: wrap;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-feature {
  flex: 1 1 100%;
  padding: 1rem;
  font-weight: 600;
  background: var(--color-light);
}

.comparison-value {
  flex: 1 1 50%;
  padding: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb span {
  color: var(--color-muted);
  margin: 0 0.5rem;
}

/* Page Header */
.page-header {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--color-accent);
  max-width: 600px;
  margin: 0 auto;
}

/* Two Column */
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}

.two-col > * {
  flex: 1 1 100%;
}

.two-col-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col-visual svg {
  width: 100%;
  max-width: 350px;
  height: auto;
}

/* Icon List */
.icon-list {
  list-style: none;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.icon-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* Responsive */
@media (min-width: 640px) {
  .card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .service-card {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .testimonial {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .value-item {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .footer-col {
    flex: 1 1 calc(50% - 1rem);
  }

  .contact-card {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }

  .hero {
    padding: 6rem 0;
  }

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

  .section {
    padding: 5rem 0;
  }

  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .two-col > * {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .service-card {
    flex: 1 1 calc(33.333% - 1rem);
  }

  .stat-item {
    flex: 1 1 20%;
  }

  .footer-col {
    flex: 1 1 auto;
  }

  .footer-col:first-child {
    flex: 2;
  }
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  top: 0;
}

/* Focus States */
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

button:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
