:root {
  --primary: #2C1810;
  --secondary: #D4A574;
  --accent: #B8865F;
  --dark: #1A0F0A;
  --light: #F5F0EB;
  --white: #FFFFFF;
  --gray: #8B7B6F;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 32px rgba(44, 24, 16, 0.16);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--primary);
  background: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, .btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-lg);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(245, 240, 235, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) var(--space-lg);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.burger-line {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-smooth);
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: var(--transition-smooth);
  z-index: 999;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.125rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light) 0%, #E8DDD4 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-lg);
  max-width: 800px;
  animation: fadeInUp 1s var(--transition-smooth);
}

.hero h1 {
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: var(--space-xl) var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.section-subtitle {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.card-text {
  color: var(--gray);
  font-size: 0.875rem;
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-item:nth-child(odd) {
  transform: translateY(2rem);
}

.overlay-section {
  position: relative;
  margin-top: -4rem;
  z-index: 10;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  animation: pulse 8s infinite;
}

.contact-info h3 {
  color: var(--secondary);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-detail i {
  color: var(--secondary);
  font-size: 1.25rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  font-size: 0.875rem;
  color: var(--primary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #E8DDD4;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  transition: var(--transition-fast);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 95, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-content {
  padding: var(--space-md);
}

.product-title {
  font-size: 1.375rem;
  margin-bottom: var(--space-xs);
}

.product-price {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
  margin: var(--space-sm) 0;
}

.process-steps {
  display: grid;
  gap: var(--space-lg);
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-md);
  align-items: start;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow-md);
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  margin-bottom: var(--space-xs);
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: var(--space-lg);
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.footer-links a {
  color: var(--secondary);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: var(--transition-smooth);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-code {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--light) 0%, #E8DDD4 100%);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  animation: scaleIn 0.6s var(--transition-bounce);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s var(--transition-smooth);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-layout {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-item:nth-child(odd) {
    transform: none;
  }
  
  .process-step {
    grid-template-columns: 60px 1fr;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content [style*="display: flex"] {
    flex-wrap: wrap;
  }
  
  [style*="display: grid"][style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }
  
  header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .section {
    padding: var(--space-lg) var(--space-md);
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  a,
  button,
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  input,
  textarea,
  select {
    font-size: 16px;
  }
  
  .hero-content [style*="font-size"] {
    font-size: clamp(0.875rem, 3vw, 1.125rem) !important;
  }
  
  [style*="padding: var(--space-xl)"] {
    padding: var(--space-lg) !important;
  }
  
  [style*="gap: var(--space-xl)"] {
    gap: var(--space-lg) !important;
  }
}

@media (max-width: 374px) {
  :root {
    font-size: 13px;
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
  }
  
  body {
    font-size: 0.875rem;
  }
  
  h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.125rem;
  }
  
  h4 {
    font-size: 1rem;
  }
  
  header {
    padding: 0.625rem 0.75rem;
  }
  
  .header-container {
    gap: 0.5rem;
  }
  
  .logo {
    font-size: 1.125rem;
  }
  
  .burger-menu {
    padding: 0.375rem;
  }
  
  .burger-line {
    width: 22px;
  }
  
  .mobile-nav {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  
  .hero {
    min-height: 75vh;
    padding: 1rem 0.75rem;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }
  
  .hero p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-content {
    padding: 1rem 0.75rem;
  }
  
  .section {
    padding: 1.5rem 0.75rem;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
  }
  
  .btn,
  button {
    font-size: 0.8125rem;
    padding: 0.625rem 1.25rem;
  }
  
  .card,
  .product-card {
    border-radius: 0.75rem;
  }
  
  .card-content,
  .product-content {
    padding: 1rem;
  }
  
  .card-image,
  .product-image {
    height: 180px;
  }
  
  .card-title,
  .product-title {
    font-size: 1.0625rem;
  }
  
  .card-text {
    font-size: 0.8125rem;
  }
  
  .product-price {
    font-size: 1.25rem;
  }
  
  .grid {
    gap: 1rem;
  }
  
  .product-grid {
    gap: 1rem;
  }
  
  .contact-container {
    gap: 1.5rem;
  }
  
  .contact-info {
    padding: 1.5rem 1rem;
  }
  
  .contact-detail {
    margin-bottom: 1rem;
    font-size: 0.8125rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-label {
    font-size: 0.8125rem;
    margin-bottom: 0.375rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.625rem;
    font-size: 0.8125rem;
  }
  
  .form-textarea {
    min-height: 100px;
  }
  
  .form-checkbox {
    font-size: 0.75rem;
    gap: 0.375rem;
  }
  
  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 0.75rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-content h3 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.8125rem;
  }
  
  .feature-item {
    padding: 0.75rem;
    gap: 0.625rem;
  }
  
  .feature-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  
  .asymmetric-layout {
    gap: 1.5rem;
  }
  
  .asymmetric-item:nth-child(odd) {
    transform: none;
  }
  
  .map-container {
    height: 300px;
    border-radius: 0.75rem;
  }
  
  .footer-content {
    font-size: 0.75rem;
    gap: 0.75rem;
    padding: 0.75rem;
  }
  
  .footer-links {
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    font-size: 0.75rem;
  }
  
  .cookie-popup {
    padding: 1rem 0.75rem;
  }
  
  .cookie-content {
    gap: 1rem;
  }
  
  .cookie-text {
    font-size: 0.8125rem;
  }
  
  .cookie-buttons {
    gap: 0.5rem;
  }
  
  .cookie-buttons button {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
  
  .error-code {
    font-size: 5rem;
  }
  
  .error-page h1,
  .thank-you-page h1 {
    font-size: 1.5rem;
  }
  
  .error-page p,
  .thank-you-page p {
    font-size: 0.9375rem;
  }
  
  .thank-you-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
  }
  
  .nav-links a {
    font-size: 0.75rem;
  }
}

@media (max-width: 320px) {
  :root {
    font-size: 12px;
    --space-xs: 0.375rem;
    --space-sm: 0.625rem;
    --space-md: 0.875rem;
    --space-lg: 1.25rem;
    --space-xl: 2rem;
  }
  
  body {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 1.625rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.0625rem;
  }
  
  header {
    padding: 0.5rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .burger-line {
    width: 20px;
    height: 1.5px;
  }
  
  .hero {
    min-height: 70vh;
    padding: 0.75rem 0.5rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
  
  .hero p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .hero-content > div {
    gap: 0.625rem;
  }
  
  .section {
    padding: 1.25rem 0.625rem;
  }
  
  .btn,
  button {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
  }
  
  .card,
  .product-card {
    border-radius: 0.625rem;
    box-shadow: 0 2px 8px rgba(44, 24, 16, 0.08);
  }
  
  .card-content,
  .product-content {
    padding: 0.875rem;
  }
  
  .card-image,
  .product-image {
    height: 160px;
  }
  
  .card-title,
  .product-title {
    font-size: 1rem;
    margin-bottom: 0.375rem;
  }
  
  .card-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .product-price {
    font-size: 1.125rem;
  }
  
  .grid,
  .product-grid {
    gap: 0.875rem;
  }
  
  .contact-info,
  .form {
    padding: 1.25rem 0.875rem;
  }
  
  .contact-detail {
    margin-bottom: 0.875rem;
    font-size: 0.75rem;
  }
  
  .contact-detail i {
    font-size: 1rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  
  .form-label {
    font-size: 0.75rem;
  }
  
  .form-textarea {
    min-height: 90px;
  }
  
  .form-checkbox {
    font-size: 0.6875rem;
  }
  
  .process-step {
    grid-template-columns: 45px 1fr;
    gap: 0.625rem;
  }
  
  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
  
  .step-content h3 {
    font-size: 0.9375rem;
  }
  
  .step-content p {
    font-size: 0.75rem;
  }
  
  .feature-item {
    padding: 0.625rem;
    gap: 0.5rem;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
    font-size: 0.875rem;
  }
  
  .map-container {
    height: 250px;
  }
  
  .footer-content {
    font-size: 0.6875rem;
    padding: 0.625rem;
  }
  
  .footer-links {
    gap: 0.5rem;
  }
  
  .footer-links a {
    font-size: 0.6875rem;
  }
  
  .cookie-popup {
    padding: 0.875rem 0.625rem;
  }
  
  .cookie-text {
    font-size: 0.75rem;
  }
  
  .cookie-buttons button {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }
  
  .error-code {
    font-size: 4rem;
  }
  
  .error-page h1,
  .thank-you-page h1 {
    font-size: 1.375rem;
  }
  
  .error-page p,
  .thank-you-page p {
    font-size: 0.875rem;
  }
  
  .thank-you-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 0.6875rem;
  }
  
  .asymmetric-layout {
    gap: 1.25rem;
  }
  
  .mobile-nav {
    max-width: 100%;
    width: 100%;
  }
  
  .mobile-nav ul {
    gap: 0.875rem;
  }
  
  .mobile-nav a {
    font-size: 0.9375rem;
  }
  
  table {
    font-size: 0.75rem;
  }
  
  .section-header p {
    font-size: 0.875rem;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .hero-content > div[style*="display: flex"] {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content > div[style*="gap"] {
    gap: 0.625rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  iframe {
    max-width: 100%;
  }
  
  .animate-on-scroll {
    opacity: 1;
    transform: none;
  }
}

