:root {
  --primary: #2D5A7B;
  --primary-dark: #1E3D52;
  --secondary: #4A9B8C;
  --accent: #E8B849;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --bg-light: #F8FAFB;
  --bg-alt: #EEF3F6;
  --white: #ffffff;
  --border: #D1DBE3;
  --shadow: rgba(45, 90, 123, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

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

nav ul li a {
  font-weight: 500;
  color: var(--text-dark);
  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%;
}

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

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

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

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

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

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.hero-visual svg {
  max-width: 400px;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.service-card .icon {
  width: 60px;
  height: 60px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon svg {
  width: 32px;
  height: 32px;
}

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

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

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

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

.feature-block {
  display: flex;
  gap: 50px;
  align-items: center;
}

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

.feature-block .content {
  flex: 1;
}

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

.feature-block .visual svg {
  max-width: 300px;
  width: 100%;
}

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

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

/* Statistics */
.stats-row {
  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;
  max-width: 250px;
}

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

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

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

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

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

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  flex: 1 1 350px;
  max-width: 400px;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
}

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

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

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

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

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

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

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

.faq-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow);
}

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

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

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

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

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

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

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

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

.process-step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
}

.process-step .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 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

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

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

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  flex: 1 1 280px;
  max-width: 320px;
  border-left: 4px solid var(--secondary);
}

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

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

/* Benefits List */
.benefits-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

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

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

.benefits-list li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.benefits-list li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.benefits-list li span {
  color: var(--text-dark);
}

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

.industry-item {
  background: var(--white);
  padding: 20px 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 3px 10px var(--shadow);
}

.industry-item svg {
  width: 28px;
  height: 28px;
}

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

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

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

.quote-section cite {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

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

.cta-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

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

.cta-section .btn:hover {
  background: #D4A63E;
}

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

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

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

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

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

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

.contact-item .icon-wrap svg {
  width: 24px;
  height: 24px;
}

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

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

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

.contact-map svg {
  width: 120px;
  height: 120px;
  opacity: 0.5;
}

/* Company Info Block */
.company-info-block {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
}

.company-info-block h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

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

/* Footer */
footer {
  background: var(--primary-dark);
  color: var(--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 1 250px;
}

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

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  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);
  box-shadow: 0 -5px 20px var(--shadow);
  padding: 20px;
  z-index: 2000;
  display: none;
}

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

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

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

.cookie-banner-text p {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.cookie-banner-text a {
  font-size: 0.9rem;
}

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

.cookie-banner-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal {
  background: var(--white);
  border-radius: 12px;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

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

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

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

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

.cookie-modal-body p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

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

.cookie-option-info h4 {
  color: var(--primary-dark);
  margin-bottom: 3px;
}

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

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

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

.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 13px;
  transition: background 0.3s ease;
}

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

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

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

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

.cookie-modal-footer {
  padding: 0 25px 25px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Page Header */
.page-header {
  padding: 140px 20px 60px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-alt) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

.thank-you-content svg {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.thank-you-content h1 {
  font-size: 2.4rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

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

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

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

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

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

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

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

/* 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(--border);
}

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

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

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

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

/* Comparison Table */
.comparison-wrapper {
  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 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(--white);
  font-weight: 600;
}

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

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

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--primary-dark);
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, #3D8576 100%);
  border-radius: 12px;
  padding: 40px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

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

.highlight-panel p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .benefits-wrapper {
    flex-direction: column;
  }
}

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

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 20px var(--shadow);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

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

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

  section {
    padding: 60px 20px;
  }

  .stat-item .number {
    font-size: 2.4rem;
  }

  .contact-wrapper {
    flex-direction: column;
  }

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

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

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

  .quote-section blockquote {
    font-size: 1.3rem;
  }
}

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

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

  .btn {
    padding: 12px 24px;
  }

  .service-card,
  .testimonial-card,
  .team-member {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
