/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #2d2926;
  --color-secondary: #8b7355;
  --color-accent: #c9a87c;
  --color-light: #f8f6f3;
  --color-white: #ffffff;
  --color-text: #3d3d3d;
  --color-text-light: #6b6b6b;
  --color-border: #e5e0d8;
  --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: Georgia, 'Times New Roman', serif;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

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

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

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

ul {
  list-style: none;
}

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

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

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

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

.logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: var(--color-secondary);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

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

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

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

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

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

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: var(--shadow-medium);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

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

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

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

/* Hero Section */
.hero {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secondary);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-accent);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-primary);
  line-height: 1.2;
  max-width: 700px;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 550px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

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

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

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

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

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

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

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

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

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

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

.section-header h2 {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 15px;
}

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

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

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

/* Philosophy Section */
.philosophy {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-content {
  flex: 1;
  min-width: 300px;
}

.philosophy-content h2 {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

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

.philosophy-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

/* Service Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.service-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

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

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

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

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

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

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

.feature-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

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

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

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

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

/* Statistics Section */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 30px;
  min-width: 180px;
}

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

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

.stat-label {
  font-size: 1rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  background: var(--color-white);
  padding: 35px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-accent);
  font-size: 5rem;
  color: var(--color-border);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

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

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

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

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

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

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0;
}

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

.faq-question:hover {
  color: var(--color-secondary);
}

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

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

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

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

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

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

/* Values Section */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.value-card {
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  text-align: center;
  padding: 40px 25px;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--color-secondary);
}

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

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

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

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

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

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

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

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

.quote-text {
  font-family: var(--font-accent);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-style: italic;
}

.quote-author {
  color: var(--color-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

.contact-info h2 {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 25px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

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

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

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

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

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

.contact-description {
  flex: 1;
  min-width: 300px;
}

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

.contact-description p {
  color: var(--color-text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.cta-section h2 {
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

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

.cta-section .btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.team-member {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

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

.member-avatar svg {
  width: 50px;
  height: 50px;
  fill: var(--color-secondary);
}

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

.team-member .role {
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

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

/* Timeline / Milestones */
.milestones-list {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.milestones-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.milestone-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.milestone-year {
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  z-index: 1;
}

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

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

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

.industry-tag {
  padding: 15px 30px;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* Page Headers */
.page-header {
  padding: 140px 20px 60px;
  background: var(--color-light);
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: 15px;
}

.page-header p {
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Content Pages */
.content-page {
  padding: 60px 20px;
}

.content-page .container {
  max-width: 900px;
}

.content-page h2 {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--color-primary);
  margin: 40px 0 20px;
}

.content-page h3 {
  font-size: 1.2rem;
  color: var(--color-primary);
  margin: 30px 0 15px;
}

.content-page p {
  margin-bottom: 15px;
  color: var(--color-text);
  line-height: 1.8;
}

.content-page ul {
  margin: 15px 0;
  padding-left: 25px;
}

.content-page ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--color-text);
}

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

.thank-you-content {
  max-width: 600px;
}

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

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

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

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

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

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

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

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

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

.footer-section ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-logo {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

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

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

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

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

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

.cookie-banner.active {
  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 h4 {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

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

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

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: var(--transition);
}

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

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

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

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

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

.cookie-btn-settings:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

/* 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.active {
  display: flex;
}

.cookie-modal-content {
  background: var(--color-white);
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  padding: 30px;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
}

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

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

.cookie-category {
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category h4 {
  font-size: 1rem;
  color: var(--color-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(--color-border);
  border-radius: 26px;
  transition: var(--transition);
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-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-category p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

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

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

.comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
}

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

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

.comparison-table td {
  color: var(--color-text);
}

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

/* Alternating Content */
.alternating-block {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

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

.alternating-content {
  flex: 1;
  min-width: 300px;
}

.alternating-content h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

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

.alternating-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
  border-left: 4px solid var(--color-secondary);
  padding: 30px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

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

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

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 120px 20px 60px;
    min-height: auto;
  }

  .section {
    padding: 60px 20px;
  }

  .philosophy,
  .alternating-block {
    flex-direction: column;
  }

  .alternating-block:nth-child(even) {
    flex-direction: column;
  }

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

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

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .stats-container {
    gap: 20px;
  }

  .stat-item {
    min-width: 140px;
    padding: 20px;
  }

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

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-cta {
    width: 100%;
  }

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