/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #8B6914;
  --color-primary-dark: #6B5210;
  --color-secondary: #2C3E50;
  --color-accent: #D4A84B;
  --color-light: #F8F6F1;
  --color-lighter: #FDFCFA;
  --color-dark: #1A1A1A;
  --color-gray: #6B7280;
  --color-gray-light: #E5E7EB;
  --color-white: #FFFFFF;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.7;
  color: var(--color-dark);
  background-color: var(--color-white);
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

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

.section--accent {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-secondary);
}

.section-title span {
  display: block;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

.section--accent .section-title {
  color: var(--color-white);
}

.section--accent .section-title span {
  color: var(--color-accent);
}

/* Header & Navigation */
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.logo__icon {
  width: 40px;
  height: 40px;
}

.logo__text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.nav {
  display: none;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-weight: 500;
  color: var(--color-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle__bar {
  width: 28px;
  height: 3px;
  background-color: var(--color-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: right var(--transition);
  z-index: 1000;
  padding: 5rem 2rem 2rem;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav__link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-secondary);
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav__link:hover {
  color: var(--color-primary);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-lighter) 100%);
  padding: 5rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.hero__title {
  font-size: 2.2rem;
  color: var(--color-secondary);
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero__illustration {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.hero__illustration svg {
  max-width: 280px;
  height: auto;
}

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

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

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

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

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

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

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

/* Feature Cards */
.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.feature-card__title {
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.feature-card__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Service Cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card__header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 1.5rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-card__title {
  font-size: 1.25rem;
  margin: 0;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__desc {
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.service-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-card__price span {
  font-size: 0.9rem;
  color: var(--color-gray);
  font-weight: 400;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  min-width: 140px;
}

.stat-item__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section--accent .stat-item__number {
  color: var(--color-accent);
}

.stat-item__label {
  font-size: 0.95rem;
  color: var(--color-gray);
}

.section--accent .stat-item__label {
  color: rgba(255,255,255,0.8);
}

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

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

.testimonial-card__text {
  font-style: italic;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

.testimonial-card__role {
  font-size: 0.85rem;
  color: var(--color-gray);
}

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

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

.faq-item__question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item__icon {
  width: 24px;
  height: 24px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

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

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-gray);
}

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

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

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

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

.process-step__content {
  flex: 1;
}

.process-step__title {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.process-step__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

.contact-item__icon svg {
  width: 24px;
  height: 24px;
}

.contact-item__label {
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.contact-item__value {
  color: var(--color-gray);
}

.contact-item__value a {
  color: var(--color-primary);
}

.contact-item__value a:hover {
  text-decoration: underline;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.value-item__icon {
  width: 56px;
  height: 56px;
  background-color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item__icon svg {
  width: 32px;
  height: 32px;
}

.value-item__title {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.value-item__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Highlighted Panel */
.highlighted-panel {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 3rem 2rem;
  border-radius: 16px;
  color: var(--color-white);
  text-align: center;
}

.highlighted-panel__title {
  margin-bottom: 1rem;
}

.highlighted-panel__text {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Alternating Content */
.alternating-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.alternating-block:last-child {
  margin-bottom: 0;
}

.alternating-block__content {
  order: 2;
}

.alternating-block__visual {
  order: 1;
  display: flex;
  justify-content: center;
}

.alternating-block__visual svg {
  max-width: 250px;
  height: auto;
}

.alternating-block__title {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.alternating-block__text {
  color: var(--color-gray);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.trust-item__icon {
  width: 32px;
  height: 32px;
}

.trust-item__text {
  font-weight: 500;
  color: var(--color-secondary);
}

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

.industry-tag {
  background-color: var(--color-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  color: var(--color-secondary);
  transition: var(--transition);
}

.industry-tag:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Comparison Table */
.comparison-section {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  background-color: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

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

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

.comparison-table tr:hover td {
  background-color: var(--color-light);
}

/* Footer */
.footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand {
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.footer__column h4 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-accent);
}

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

.footer__copyright {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  z-index: 2000;
  display: none;
}

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

.cookie-banner__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

.cookie-banner__text a {
  color: var(--color-accent);
  text-decoration: underline;
}

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

.cookie-banner__btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.cookie-banner__btn--accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-banner__btn--settings {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
}

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

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

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

.cookie-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cookie-modal__title {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin: 0;
}

.cookie-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

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

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

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

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

.cookie-option__title {
  font-weight: 600;
  color: var(--color-secondary);
}

.cookie-option__desc {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Toggle Switch */
.toggle {
  position: relative;
  width: 48px;
  height: 26px;
}

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

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

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

.toggle input:checked + .toggle__slider {
  background-color: var(--color-primary);
}

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

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

.cookie-modal__footer {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-modal__btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  min-width: 120px;
}

.cookie-modal__btn--save {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.cookie-modal__btn--save:hover {
  background-color: var(--color-primary-dark);
}

.cookie-modal__btn--accept-all {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
}

.cookie-modal__btn--accept-all:hover {
  background-color: var(--color-dark);
}

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

.thank-you__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.thank-you__title {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.thank-you__text {
  color: var(--color-gray);
  max-width: 500px;
  margin: 0 auto 2rem;
}

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

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--color-secondary);
  margin: 2.5rem 0 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  color: var(--color-gray);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-lighter) 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header__title {
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.page-header__subtitle {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.benefit-item__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.benefit-item__title {
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.benefit-item__text {
  color: var(--color-gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

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

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

.timeline-item:last-child {
  padding-bottom: 0;
}

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

.timeline-item__year {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.timeline-item__title {
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.timeline-item__text {
  color: var(--color-gray);
  margin-bottom: 0;
}

/* Quote Block */
.quote-block {
  background-color: var(--color-light);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-size: 6rem;
  font-family: var(--font-heading);
  color: var(--color-primary);
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-block__text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-secondary);
  max-width: 700px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.quote-block__author {
  color: var(--color-primary);
  font-weight: 600;
}

/* Knowledge Cards */
.knowledge-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.knowledge-card {
  background-color: var(--color-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.knowledge-card__title {
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.knowledge-card__text {
  color: var(--color-gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Two Columns */
.two-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.two-columns__item {
  flex: 1;
}

/* Responsive - Tablet */
@media (min-width: 640px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

  .hero__title {
    font-size: 2.75rem;
  }

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

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

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

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

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

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

  .footer__grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer__brand {
    flex: 1 1 100%;
    text-align: left;
  }

  .footer__logo {
    justify-content: flex-start;
  }

  .footer__column {
    flex: 1 1 auto;
  }

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

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

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

  .benefits-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

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

  .two-columns {
    flex-direction: row;
  }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-overlay {
    display: none !important;
  }

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

  .hero__text {
    flex: 1;
    max-width: 550px;
  }

  .hero__cta {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero__illustration {
    flex: 1;
    margin-top: 0;
  }

  .hero__illustration svg {
    max-width: 400px;
  }

  .feature-card {
    flex: 1 1 calc(25% - 1.5rem);
  }

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

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

  .footer__brand {
    flex: 1 1 30%;
  }

  .footer__column {
    flex: 1 1 20%;
  }

  .alternating-block {
    flex-direction: row;
    align-items: center;
  }

  .alternating-block__content {
    flex: 1;
    order: 1;
  }

  .alternating-block__visual {
    flex: 1;
    order: 2;
  }

  .alternating-block:nth-child(even) .alternating-block__content {
    order: 2;
  }

  .alternating-block:nth-child(even) .alternating-block__visual {
    order: 1;
  }

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

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

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

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

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  z-index: 9999;
}

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