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

:root {
  --primary: #2c3e50;
  --secondary: #c9a86c;
  --accent: #8b7355;
  --dark: #1a252f;
  --light: #f8f6f3;
  --cream: #faf8f5;
  --text: #3d3d3d;
  --text-light: #6b6b6b;
  --border: #e5e0d8;
  --shadow: rgba(44, 62, 80, 0.1);
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

.header-content {
  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;
  color: var(--cream);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
}

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

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

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

.nav-links a {
  color: var(--cream);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

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

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

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

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

.mobile-menu-btn.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(--cream);
  padding: 100px 20px;
  text-align: center;
}

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

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-feature svg {
  width: 50px;
  height: 50px;
  fill: var(--secondary);
}

.hero-feature span {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

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

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

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

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

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

.section-cream {
  background: var(--cream);
}

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

.section-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--cream);
}

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

.section-dark .section-title {
  color: var(--cream);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
}

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

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

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

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

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

.card-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--secondary);
}

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

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

.card-price {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.service-card-header {
  background: var(--primary);
  color: var(--cream);
  padding: 25px;
  text-align: center;
}

.service-card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.service-card-body {
  padding: 25px;
}

.service-card-body p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}

.stat-item {
  min-width: 150px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.section-dark .stat-number {
  color: var(--secondary);
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
}

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

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

.testimonial {
  background: white;
  border-radius: 8px;
  padding: 35px;
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  counter-reset: step;
}

.process-step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

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

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

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--secondary);
}

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

.feature-content p {
  color: var(--text-light);
}

/* Alternating Content */
.content-block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
}

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

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

.content-text {
  flex: 1;
}

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

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

.content-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

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

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 100px 20px;
}

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

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

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

.industry-item {
  background: white;
  padding: 25px 35px;
  border-radius: 8px;
  box-shadow: 0 3px 15px var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.industry-item svg {
  width: 35px;
  height: 35px;
  fill: var(--secondary);
}

.industry-item span {
  font-weight: 500;
  color: var(--primary);
}

/* Milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

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

.milestone {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.milestone-year {
  width: 90px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  text-align: right;
  flex-shrink: 0;
  position: relative;
}

.milestone-year::after {
  content: '';
  position: absolute;
  right: -21px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
}

.milestone-content {
  padding-left: 20px;
}

.milestone-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

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

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

.value-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 40px 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px var(--shadow);
  border-top: 4px solid var(--secondary);
}

.value-item svg {
  width: 60px;
  height: 60px;
  fill: var(--secondary);
  margin-bottom: 20px;
}

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

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

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

.team-member {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

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

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

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

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

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

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

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

.contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

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

.contact-map {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: var(--cream);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow);
}

.contact-map h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.contact-map p {
  color: var(--text-light);
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 20px;
}

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

.cta-section p {
  margin-bottom: 30px;
  opacity: 0.9;
}

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

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

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

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

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

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

.footer-section ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

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

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

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

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 25px 0 10px;
}

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

.legal-content ul {
  margin: 15px 0 15px 30px;
  color: var(--text);
}

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

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

.thank-you svg {
  width: 100px;
  height: 100px;
  fill: var(--secondary);
  margin-bottom: 30px;
}

.thank-you h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 30px;
}

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

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

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

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

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

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

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

.cookie-btn-accept:hover {
  background: var(--accent);
  color: var(--cream);
}

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

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

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

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

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

.cookie-modal {
  background: white;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.cookie-modal-header h3 {
  font-size: 1.3rem;
  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(--primary);
}

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

.cookie-option {
  margin-bottom: 25px;
  padding-bottom: 25px;
  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: 10px;
}

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

.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: var(--border);
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: 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);
}

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

/* Comparison Table */
.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
}

.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(--cream);
  font-weight: 600;
}

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

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

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--dark);
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.highlight-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.highlight-panel p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.trust-item svg {
  width: 50px;
  height: 50px;
  fill: var(--secondary);
}

.trust-item span {
  font-weight: 500;
  color: var(--primary);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--cream);
  padding: 80px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .nav-links a {
    display: block;
    padding: 15px 0;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .hero-features {
    gap: 25px;
  }

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

  .stats {
    gap: 30px;
  }

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

  .content-block,
  .content-block:nth-child(even) {
    flex-direction: column;
    gap: 30px;
  }

  .milestones::before {
    left: 40px;
  }

  .milestone-year {
    width: 60px;
    font-size: 1.1rem;
  }

  .milestone-year::after {
    right: -16px;
  }

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

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

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

  .comparison-table {
    font-size: 0.9rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px;
  }

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

  section {
    padding: 50px 15px;
  }

  .card,
  .testimonial,
  .service-card {
    min-width: 100%;
  }

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

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

  .highlight-panel {
    padding: 30px 20px;
  }

  .highlight-panel h3 {
    font-size: 1.4rem;
  }
}