:root {
  --color-primary: #2c5530;
  --color-primary-dark: #1e3d22;
  --color-secondary: #e8d5b7;
  --color-accent: #c49a6c;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f4f0;
  --color-bg-dark: #2a2a2a;
  --color-border: #e0dcd6;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary-dark);
}

h1 { font-size: 2.2rem; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1rem;
}

/* Header & Navigation */
.header {
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
  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 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.nav-desktop {
  display: none;
}

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

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

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

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

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

.nav-toggle span {
  width: 28px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg);
  box-shadow: var(--shadow-medium);
  padding: 20px;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-mobile a {
  display: block;
  padding: 12px 15px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-mobile a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-bg);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  color: var(--color-bg);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.hero-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
}

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

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

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

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

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

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

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

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

/* Sections */
.section {
  padding: 50px 20px;
}

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

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

.section-dark h2,
.section-dark h3 {
  color: var(--color-secondary);
}

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

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

/* Cards */
.card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

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

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

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

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Service Cards */
.service-card {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-primary);
}

.service-card h3 {
  margin-bottom: 10px;
}

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

.services-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
}

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

.feature-content h3 {
  margin-bottom: 15px;
}

.feature-visual {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual svg {
  width: 120px;
  height: 120px;
  fill: var(--color-primary);
}

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

.stat-item {
  text-align: center;
  padding: 25px;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

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

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

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

/* Testimonials */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  padding-left: 30px;
}

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

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

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

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

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

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

.faq-item {
  background: var(--color-bg);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 50px 18px 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

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

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

.faq-item.active .faq-answer {
  display: block;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 8px;
}

/* Trust Indicators */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background: var(--color-bg-alt);
  border-radius: 8px;
}

.trust-item svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

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

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

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

.cta-section h2 {
  color: var(--color-bg);
  margin-bottom: 15px;
}

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

/* Contact Info */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

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

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

.contact-details h4 {
  margin-bottom: 5px;
}

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

.company-info-block h3 {
  margin-bottom: 15px;
}

/* Team Section */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-member {
  background: var(--color-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

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

.team-avatar svg {
  width: 40px;
  height: 40px;
  fill: var(--color-bg);
}

.team-member h4 {
  margin-bottom: 5px;
}

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

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

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

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

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

.timeline-year {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  fill: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

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

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

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

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

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

.industry-tag {
  padding: 12px 20px;
  background: var(--color-bg);
  border-radius: 30px;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.industry-tag:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #f5ebe0 100%);
  border-radius: 12px;
  padding: 35px;
  border-left: 5px solid var(--color-primary);
}

.highlight-panel h3 {
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 20px 20px;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--color-secondary);
  margin-bottom: 15px;
}

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

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

.footer-section a {
  color: rgba(255,255,255,0.7);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-bg);
  margin-bottom: 15px;
}

.footer-logo svg {
  width: 35px;
  height: 35px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.9rem;
}

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

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

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

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--color-bg);
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

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

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

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

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

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

.cookie-btn-decline {
  background: transparent;
  color: var(--color-bg);
  border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
}

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

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

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

.cookie-modal-content {
  background: var(--color-bg);
  border-radius: 12px;
  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: 20px;
}

.cookie-modal-header h3 {
  margin: 0;
}

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

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

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

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

.cookie-option h4 {
  margin: 0;
}

.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 {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--color-bg);
  border-radius: 50%;
  transition: var(--transition);
}

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

.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(--color-text-light);
  margin: 0;
}

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

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

.page-header h1 {
  color: var(--color-bg);
  margin-bottom: 10px;
}

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

/* Breadcrumb */
.breadcrumb {
  padding: 15px 20px;
  background: var(--color-bg-alt);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-text-light);
}

.breadcrumb span {
  color: var(--color-text);
  margin: 0 8px;
}

/* Icon Sections */
.icon-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.icon-feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

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

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

/* Alternating Blocks */
.alt-blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.alt-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.alt-block-visual {
  background: var(--color-bg-alt);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-block-visual svg {
  width: 100px;
  height: 100px;
  fill: var(--color-primary);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 10px 20px;
  z-index: 10001;
  transition: var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* Media Queries */
@media (min-width: 600px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }

  .hero {
    padding: 80px 20px;
  }

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

  .hero-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cards-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cards-grid .card {
    flex: 1;
    min-width: 280px;
  }

  .testimonials-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .team-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .team-member {
    flex: 1;
    min-width: 250px;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-text {
    flex: 1;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
  }

  .section {
    padding: 70px 20px;
  }

  .hero {
    padding: 100px 20px;
  }

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

  .feature-block {
    flex-direction: row;
    align-items: center;
  }

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

  .feature-content {
    flex: 1;
  }

  .feature-visual {
    flex: 1;
    min-height: 300px;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-section {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-item {
    flex: 1;
    min-width: 250px;
  }

  .values-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .value-item {
    flex: 1;
    min-width: 280px;
  }

  .alt-block {
    flex-direction: row;
    align-items: center;
  }

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

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

  .alt-block-visual {
    flex: 1;
  }

  .services-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1;
    min-width: 300px;
  }
}

@media (min-width: 1100px) {
  .container {
    padding: 0 40px;
  }

  .cards-grid .card {
    min-width: 320px;
  }
}
