:root {
  --primary: #2c3e50;
  --secondary: #8b4513;
  --accent: #c0392b;
  --light: #faf8f5;
  --dark: #1a252f;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --border: #e0d8cf;
  --shadow: rgba(0,0,0,0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.8rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

/* Navigation */
nav {
  display: none;
}

nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 10px var(--shadow);
  padding: 20px;
}

nav ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 15px;
}

nav a {
  color: var(--text);
  font-size: 1rem;
  padding: 8px 0;
  display: block;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

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

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

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

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

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

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

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

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

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

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

/* Sections */
section {
  padding: 50px 20px;
}

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

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 3px 15px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 10px;
}

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

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 15px var(--shadow);
  border-left: 4px solid var(--secondary);
}

.service-card h3 {
  color: var(--secondary);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  margin-top: 15px;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
}

.feature-block:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.feature-icon {
  width: 60px;
  height: 60px;
}

.feature-content h3 {
  margin-bottom: 10px;
}

/* Alternating Blocks */
.alt-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
}

.alt-block-content {
  order: 2;
}

.alt-block-visual {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.alt-block-visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Statistics */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  text-align: center;
}

.stat-item {
  flex: 1 1 140px;
  padding: 25px 15px;
}

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

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 5px;
}

.section-dark .stat-number {
  color: #f39c12;
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 15px var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

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

.testimonial-role {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Quote Section */
.quote-section {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.quote-author {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-family: inherit;
}

.faq-question:hover {
  background: rgba(0,0,0,0.02);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--text-light);
  margin: 0;
}

/* Milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  padding-left: 30px;
}

.milestones::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background: var(--secondary);
}

.milestone {
  position: relative;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--secondary);
}

.milestone-year {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
}

.milestone p {
  margin: 5px 0 0;
  color: var(--text-light);
}

/* Trust Indicators */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trust-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow);
}

.trust-item svg {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.trust-item h4 {
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* Industries */
.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-tag {
  background: var(--white);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  color: var(--primary);
  box-shadow: 0 2px 8px var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.industry-tag svg {
  width: 20px;
  height: 20px;
}

/* Values */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.value-item svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.value-item h4 {
  color: var(--white);
  margin-bottom: 8px;
}

.value-item p {
  margin: 0;
  opacity: 0.9;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-item svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--secondary);
}

.benefit-item h4 {
  margin-bottom: 5px;
}

.benefit-item p {
  color: var(--text-light);
  margin: 0;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--secondary);
}

.contact-item h4 {
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(0,0,0,0.02);
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, #6d3610 100%);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
}

.highlight-panel h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.highlight-panel p {
  opacity: 0.95;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.9;
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 50px 20px 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section p {
  opacity: 0.8;
  font-size: 0.95rem;
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

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

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

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  margin-top: 30px;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 25px;
  font-size: 1.2rem;
}

.legal-content ul {
  margin: 15px 0 15px 25px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  padding: 80px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you svg {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.thank-you h1 {
  margin-bottom: 20px;
}

.thank-you p {
  max-width: 500px;
  margin: 0 auto 30px;
  color: var(--text-light);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.cookie-text a {
  color: #f39c12;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-accept:hover {
  background: #a93226;
}

.cookie-reject {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
}

.cookie-reject:hover {
  border-color: var(--white);
}

.cookie-settings {
  background: transparent;
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

.cookie-settings:hover {
  color: var(--white);
}

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

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

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

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

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 5px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: var(--text);
}

.cookie-modal-body {
  padding: 25px;
}

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

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

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

.cookie-option h4 {
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  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: #ccc;
  border-radius: 26px;
  transition: 0.3s;
}

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

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

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

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

.cookie-option p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-member {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 15px var(--shadow);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 40px;
  height: 40px;
}

.team-member h4 {
  margin-bottom: 5px;
}

.team-role {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.team-member p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Icon List */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.icon-list-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-list-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--secondary);
}

/* Page Header */
.page-header {
  background: var(--primary);
  color: var(--white);
  padding: 50px 20px;
  text-align: center;
}

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

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Desktop Styles */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }

  .hero {
    padding: 100px 40px;
  }

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

  .hero p {
    font-size: 1.25rem;
  }

  .hero-icon {
    width: 100px;
    height: 100px;
  }

  section {
    padding: 80px 40px;
  }

  .menu-toggle {
    display: none;
  }

  nav {
    display: flex;
  }

  nav ul {
    flex-direction: row;
    gap: 30px;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .testimonial {
    flex: 1 1 calc(50% - 15px);
  }

  .alt-block {
    flex-direction: row;
    align-items: center;
    padding: 60px 40px;
  }

  .alt-block-content {
    flex: 1;
    order: 1;
  }

  .alt-block-visual {
    flex: 1;
    order: 2;
  }

  .alt-block.reverse .alt-block-content {
    order: 2;
  }

  .alt-block.reverse .alt-block-visual {
    order: 1;
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 20px);
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-item {
    flex: 1 1 calc(50% - 10px);
  }

  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-member {
    flex: 1 1 calc(33.333% - 20px);
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-item {
    flex: 1 1 calc(50% - 20px);
  }

  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-section {
    flex: 1 1 200px;
  }

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

  .cookie-text {
    flex: 1;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }

  .quote-text {
    font-size: 1.8rem;
  }

  .legal-content {
    padding: 60px 20px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .card {
    flex: 1 1 calc(33.333% - 25px);
  }

  .process-step {
    flex: 1 1 calc(25% - 25px);
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

:focus:not(:focus-visible) {
  outline: none;
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10001;
  transition: top 0.3s;
}

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