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

:root {
  --primary: #2c5545;
  --primary-light: #3d7a5f;
  --primary-dark: #1e3d31;
  --secondary: #c9a961;
  --secondary-light: #dcc48a;
  --accent: #8b4513;
  --text: #2d2d2d;
  --text-light: #5a5a5a;
  --bg: #fafaf8;
  --bg-alt: #f0ede6;
  --bg-dark: #e8e4db;
  --white: #ffffff;
  --border: #d4d0c8;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
}

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

a:hover {
  color: var(--primary-light);
}

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

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

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  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 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

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

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

.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(7px, -7px);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  transform: rotate(15deg);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-graphic {
  flex: 0 0 350px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

/* Section Styles */
section {
  padding: 80px 20px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  flex: 1 1 300px;
  max-width: 380px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Feature Blocks */
.feature-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.feature-block:nth-child(even) {
  flex-direction: row-reverse;
}

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

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.feature-graphic {
  flex: 0 0 300px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text);
}

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

/* Statistics */
.stats {
  background: var(--primary);
  color: var(--white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials {
  background: var(--bg-alt);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 35px;
  flex: 1 1 350px;
  max-width: 500px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--secondary);
  position: absolute;
  top: 10px;
  left: 25px;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
}

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

.author-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Process */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

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

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

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

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

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

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

/* Services */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 320px;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

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

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Benefits */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-item {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-content h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.benefit-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* About Page */
.about-intro {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-intro-text {
  flex: 1;
}

.about-intro-graphic {
  flex: 0 0 350px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

.team-avatar svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.team-member h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 10px;
}

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

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

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

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: var(--secondary);
  border-radius: 50%;
  border: 3px solid var(--white);
}

.timeline-year {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.timeline-item h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.timeline-item p {
  color: var(--text-light);
}

/* Contact */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.contact-item h4 {
  color: var(--primary);
  margin-bottom: 3px;
}

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

.contact-map {
  flex: 1 1 400px;
  background: var(--bg-alt);
  border-radius: 12px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.directions-box {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  max-width: 100%;
}

.directions-box h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.directions-box p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Company Info Block */
.company-info-block {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  margin: 40px auto 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.company-info-block h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.company-info-block p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* Thank You */
.thank-you-section {
  text-align: center;
  padding: 120px 20px;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.thank-you-section h1 {
  color: var(--primary);
  margin-bottom: 15px;
}

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

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

.legal-content h1 {
  color: var(--primary);
  margin-bottom: 30px;
}

.legal-content h2 {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.legal-content h3 {
  color: var(--primary-light);
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.legal-content ul {
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

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

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-col h4 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
}

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

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

.footer-col ul li a:hover {
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 10000;
  display: none;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text h4 {
  color: var(--primary);
  margin-bottom: 5px;
}

.cookie-text p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

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

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

.cookie-accept:hover {
  background: var(--primary-light);
}

.cookie-reject {
  background: var(--bg-alt);
  color: var(--text);
}

.cookie-reject:hover {
  background: var(--bg-dark);
}

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10001;
  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: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  color: var(--primary);
}

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

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

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

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

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

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

.cookie-option h4 {
  color: var(--primary);
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.industry-tag {
  background: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  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: var(--bg-alt);
}

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-dark) 100%);
  border-left: 5px solid var(--secondary);
  padding: 40px;
  border-radius: 0 12px 12px 0;
  max-width: 900px;
  margin: 40px auto;
}

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

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

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

.page-header h1 {
  margin-bottom: 10px;
}

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

/* Quote Block */
.quote-block {
  background: var(--primary);
  color: var(--white);
  padding: 60px 40px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.quote-block::before {
  content: '"';
  font-size: 8rem;
  position: absolute;
  top: -20px;
  left: 30px;
  color: rgba(255,255,255,0.1);
  font-family: Georgia, serif;
}

.quote-block p {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.quote-block cite {
  color: var(--secondary);
  font-style: normal;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  nav ul.active {
    transform: translateY(0);
  }

  nav ul li {
    border-bottom: 1px solid var(--border);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    padding: 15px 0;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-graphic {
    flex: 0 0 auto;
    max-width: 250px;
  }

  .feature-block,
  .feature-block:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .feature-graphic {
    flex: 0 0 auto;
    max-width: 200px;
  }

  .about-intro {
    flex-direction: column;
    text-align: center;
  }

  .about-intro-graphic {
    flex: 0 0 auto;
    max-width: 250px;
  }

  section {
    padding: 50px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item::before {
    left: -28px;
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .card {
    padding: 25px 20px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
