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

:root {
  --primary: #2d4a3e;
  --primary-dark: #1e3329;
  --secondary: #c9a962;
  --accent: #8b5a2b;
  --text: #333333;
  --text-light: #666666;
  --bg: #faf9f7;
  --bg-alt: #f0ede8;
  --white: #ffffff;
  --border: #e0dcd5;
}

html {
  scroll-behavior: smooth;
}

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(--secondary);
}

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

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

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

.nav-wrapper {
  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 ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  font-weight: 500;
  color: var(--text);
  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;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  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.95;
}

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

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

.btn-primary:hover {
  background: #b8993f;
  color: var(--primary-dark);
}

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

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

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

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

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

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

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.dark-bg .section-header h2 {
  color: var(--white);
}

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

.dark-bg .section-header p {
  color: rgba(255,255,255,0.85);
}

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

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

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

.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;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  flex: 1 1 320px;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--secondary);
}

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

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

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
}

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

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

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

.dark-bg .stat-label {
  color: rgba(255,255,255,0.85);
}

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

.testimonial {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  flex: 1 1 320px;
  max-width: 400px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.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 p {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

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

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

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

.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(--bg-alt);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  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.4s ease, padding 0.4s ease;
}

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

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

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

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

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

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

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

.content-block.reverse {
  flex-direction: row-reverse;
}

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

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

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

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

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

/* Quote Section */
.quote-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--primary);
}

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

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

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

.process-step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  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(--primary-dark);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

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

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

/* Contact Info */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

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

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 25px;
}

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

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

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

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

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

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

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

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

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

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

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

.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.7;
}

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

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  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 1 400px;
}

.cookie-text h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.cookie-text a {
  text-decoration: underline;
}

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

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

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

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

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

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

.cookie-btn.settings {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  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: 8px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
}

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

.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-option {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

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

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

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

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

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

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

.cookie-modal-footer {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

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

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

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

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

/* 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.4rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 15px;
}

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

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

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content ul li {
  margin-bottom: 10px;
  color: var(--text-light);
}

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

.industry-tag {
  background: var(--white);
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 500;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.value-item {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
}

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

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

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

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 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);
}

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

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

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

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

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

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

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

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, #d4b86a 100%);
  padding: 50px;
  border-radius: 12px;
  text-align: center;
}

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

.highlight-panel p {
  color: var(--primary-dark);
  max-width: 600px;
  margin: 0 auto 25px;
  opacity: 0.9;
}

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

  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;
  }

  section {
    padding: 50px 20px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

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

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

  .content-block {
    gap: 30px;
  }

  .footer-wrapper {
    gap: 30px;
  }

  .milestones-wrapper::before {
    left: 15px;
  }

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

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

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

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

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

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

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

  .card {
    padding: 25px 20px;
  }

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