:root {
  --white: #FFFFFF;
  --eucalyptus: #6A8F72;
  --leaf-green: #4F7F53;
  --beige: #F3ECE4;
  --charcoal: #282828;
  --terracotta: #C97A57;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Work Sans', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-background {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige) 0%, var(--white) 50%, var(--beige) 100%);
}

.hero-background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(106, 143, 114, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(79, 127, 83, 0.08) 0%, transparent 50%);
  animation: drift 20s ease-in-out infinite;
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(106, 143, 114, 0.03) 2px,
      rgba(106, 143, 114, 0.03) 4px
    );
  animation: shimmer 15s linear infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, 2%) rotate(1deg); }
  66% { transform: translate(-1%, 1%) rotate(-0.5deg); }
}

@keyframes shimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(50px); }
}

.section-background {
  position: relative;
  background: var(--beige);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.section-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse at top left, rgba(106, 143, 114, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(79, 127, 83, 0.05) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

header {
  position: relative;
  z-index: 100;
  padding: var(--space-md) 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--leaf-green);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition-base);
}

.logo:hover {
  color: var(--eucalyptus);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-menu {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-base);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--eucalyptus);
  transition: width var(--transition-base);
}

.nav-menu a:hover {
  color: var(--eucalyptus);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hero-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: var(--space-lg);
}

.hero-content h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--leaf-green);
  margin-bottom: var(--space-md);
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--charcoal);
  max-width: 600px;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--eucalyptus);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--eucalyptus);
  animation: fadeInUp 1s ease-out 0.4s both;
  margin-top: var(--space-sm);
}

.btn:hover {
  background: var(--leaf-green);
  border-color: var(--leaf-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--eucalyptus);
}

.btn-secondary:hover {
  background: var(--eucalyptus);
  color: var(--white);
}

section {
  padding: var(--space-xl) 0;
  position: relative;
}

section.content-wrapper {
  background: var(--beige);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

section.content-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(106, 143, 114, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

section.content-wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 127, 83, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-title {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--leaf-green);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--charcoal);
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  opacity: 0.8;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(106, 143, 114, 0.1), transparent);
  transition: left var(--transition-slow);
}

.card:hover::before {
  left: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--leaf-green);
  margin-bottom: var(--space-sm);
}

.card-content {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.7;
}

.product-card {
  text-align: center;
}

.product-image {
  width: 100%;
  height: 200px;
  background: var(--beige);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(106, 143, 114, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: var(--space-sm) 0;
}

.contact-section {
  background: var(--beige);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(106, 143, 114, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -30px) scale(1.1); }
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid rgba(106, 143, 114, 0.2);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-base);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--eucalyptus);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
}

.map-container {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

footer {
  background: var(--charcoal);
  color: var(--white);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.footer-menu a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.footer-menu a:hover {
  opacity: 1;
}

.content-page {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.content-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--eucalyptus), var(--leaf-green), var(--terracotta));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.content-page::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(106, 143, 114, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.content-page h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--leaf-green);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid rgba(106, 143, 114, 0.2);
  position: relative;
  z-index: 1;
}

.content-page h1::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--eucalyptus);
}

.content-page > p:first-of-type {
  background: var(--beige);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--eucalyptus);
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
  color: var(--charcoal);
}

.content-page h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--eucalyptus);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: linear-gradient(135deg, rgba(106, 143, 114, 0.1), rgba(79, 127, 83, 0.05));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--eucalyptus);
  position: relative;
  padding-left: calc(var(--space-md) + 8px + var(--space-sm));
  z-index: 1;
  transition: all var(--transition-base);
}

.content-page h2:hover {
  background: linear-gradient(135deg, rgba(106, 143, 114, 0.15), rgba(79, 127, 83, 0.08));
  transform: translateX(4px);
}

.content-page h2::before {
  content: '▸';
  position: absolute;
  left: var(--space-sm);
  margin-right: var(--space-sm);
  color: var(--eucalyptus);
  font-size: 1.2em;
}

.content-page h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--leaf-green);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  z-index: 1;
}

.content-page h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1.2em;
  background: var(--leaf-green);
  border-radius: var(--radius-sm);
}

.content-page p {
  margin-bottom: var(--space-md);
  line-height: 1.85;
  color: var(--charcoal);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.content-page strong {
  color: var(--leaf-green);
  font-weight: 600;
}

.content-page ul,
.content-page ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  line-height: 1.9;
  padding-left: var(--space-md);
}

.content-page ul {
  list-style: none;
  position: relative;
}

.content-page ul li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
}

.content-page ul li::before {
  content: '🌿';
  position: absolute;
  left: 0;
  font-size: 0.9em;
  opacity: 0.7;
}

.content-page ol li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-xs);
}

.content-page ol {
  counter-reset: item;
  list-style: none;
}

.content-page ol li {
  counter-increment: item;
  position: relative;
  padding-left: var(--space-lg);
}

.content-page ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  background: var(--eucalyptus);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  top: 2px;
}

.content-page img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: var(--space-lg) 0;
}

.content-page a {
  color: var(--eucalyptus);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.content-page a:hover {
  color: var(--leaf-green);
  border-bottom-color: var(--leaf-green);
}

.content-page blockquote,
.content-page .info-box {
  background: linear-gradient(135deg, rgba(106, 143, 114, 0.08), rgba(79, 127, 83, 0.05));
  border-left: 4px solid var(--eucalyptus);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  position: relative;
}

.content-page .info-box::before {
  content: 'ℹ';
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  font-size: 1.2rem;
  color: var(--eucalyptus);
  font-weight: 600;
}

.content-page .info-box p {
  margin-left: calc(var(--space-lg) + 20px);
  margin-bottom: 0;
}

.content-page .highlight-box {
  background: var(--beige);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
  border: 2px solid rgba(106, 143, 114, 0.2);
  box-shadow: var(--shadow-sm);
}

.content-page .highlight-box h3 {
  margin-top: 0;
  padding-left: 0;
}

.content-page .highlight-box h3::before {
  display: none;
}

.content-page table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.content-page table th {
  background: var(--eucalyptus);
  color: var(--white);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.content-page table td {
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid rgba(106, 143, 114, 0.1);
}

.content-page table tr:last-child td {
  border-bottom: none;
}

.content-page table tr:nth-child(even) {
  background: rgba(106, 143, 114, 0.03);
}

.content-page hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--eucalyptus), transparent);
  margin: var(--space-xl) 0;
}

.content-page section {
  margin: var(--space-xl) 0;
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(106, 143, 114, 0.1);
  transition: box-shadow var(--transition-base);
}

.content-page section:hover {
  box-shadow: var(--shadow-md);
}

.home-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
  padding: var(--space-sm) var(--space-lg);
  color: var(--eucalyptus);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  background: rgba(106, 143, 114, 0.1);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  position: relative;
  z-index: 1;
}

.home-button:hover {
  color: var(--white);
  background: var(--eucalyptus);
  border-color: var(--eucalyptus);
  transform: translateX(-4px);
}

.privacy-popup {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  z-index: 1000;
  animation: slideInUp 0.5s ease-out;
  border: 2px solid var(--eucalyptus);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.privacy-popup.hidden {
  display: none;
}

.privacy-popup p {
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.privacy-popup button {
  flex: 1;
  padding: var(--space-xs) var(--space-sm);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  transition: all var(--transition-base);
}

.privacy-popup .btn-accept {
  background: var(--eucalyptus);
  color: var(--white);
}

.privacy-popup .btn-accept:hover {
  background: var(--leaf-green);
}

.privacy-popup .btn-decline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.privacy-popup .btn-decline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.error-page-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.error-page-body .error-page {
  flex: 1;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-page {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--eucalyptus);
  margin-bottom: var(--space-md);
}

.error-page p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-page h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--leaf-green);
  margin-bottom: var(--space-md);
}

.thank-you-page p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    z-index: 99;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .hero-background {
    min-height: 400px;
  }

  .hero-background::before {
    animation-duration: 30s;
  }

  .section-background::before {
    animation-duration: 12s;
  }

  .contact-section::before {
    width: 400px;
    height: 400px;
    animation-duration: 15s;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .contact-form {
    padding: var(--space-lg);
  }

  .map-container iframe {
    height: 300px;
  }

  .privacy-popup {
    max-width: calc(100% - var(--space-lg));
    right: var(--space-sm);
    bottom: var(--space-sm);
  }

  .footer-menu {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .content-page {
    padding: var(--space-lg) var(--space-sm);
  }

  .content-page h2 {
    padding: var(--space-xs) var(--space-sm);
    padding-left: calc(var(--space-sm) + 8px);
    font-size: 1.2rem;
  }

  .content-page h2::before {
    left: var(--space-xs);
  }

  .content-page h3 {
    padding-left: var(--space-sm);
    font-size: 1.1rem;
  }

  .content-page ul,
  .content-page ol {
    margin-left: var(--space-md);
    padding-left: var(--space-sm);
  }

  .content-page ul li,
  .content-page ol li {
    padding-left: var(--space-md);
  }

  .content-page .info-box {
    padding: var(--space-sm) var(--space-md);
  }

  .content-page .info-box p {
    margin-left: calc(var(--space-md) + 20px);
  }

  .content-page .highlight-box {
    padding: var(--space-md);
  }

  .content-page table {
    font-size: 0.9rem;
  }

  .content-page table th,
  .content-page table td {
    padding: var(--space-xs) var(--space-sm);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-background {
    min-height: 350px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .card {
    padding: var(--space-md);
  }

  .contact-form {
    padding: var(--space-md);
  }

  .map-container iframe {
    height: 250px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero-content {
    padding: var(--space-md);
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.9rem;
  }
}

