:root {
  /* Основные цвета */
  --accent: #f67b56;
  --accent-light: #ffe8cc;
  --accent-dark: #e65a3a;
  --bg: #fff;
  --text: #474f5c;
  --text-secondary: #848c93;
  --card-bg: #fff;
  --card-shadow: rgba(0, 0, 0, .1) 0px 8px 8px -8px;
  --radius: 8px;
  
  /* Шрифты */
  --font-family: "Onest", sans-serif;
  --font-size-s: 13px;
  --font-size-m: 14px;
  --font-size-l: 16px;
  
  /* Размеры заголовков */
  --headline-1: 40px;
  --headline-2: 32px;
  --headline-3: 24px;
  --headline-4: 19px;
  
  /* Кнопки */
  --btn-height: 40px;
  --btn-radius: 8px;
  
  /* Отступы */
  --spacing-xs: 4px;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 24px;
  --spacing-xl: 32px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: var(--font-size-l);
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: #2563eb; }

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

header.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

/* Декоративные элементы */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-content {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px 40px;
  gap: 60px;
}

.hero-text {
  flex: 1;
  max-width: 800px;
}

.hero-illustration {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.hero-title {
  font-size: var(--headline-1);
  font-weight: 700;
  margin-bottom: var(--spacing-m);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-btn {
  background: #fff;
  color: var(--accent);
  border: none;
  border-radius: var(--btn-radius);
  padding: 12px 32px;
  font-size: var(--font-size-l);
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: var(--btn-height);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, .15) 0px 12px 12px -8px;
}

/* Иллюстрация (фоновые круги) */
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-bg span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  background: #fff;
  filter: blur(2px);
  animation: float 8s infinite alternate;
}

.hero-bg .c1 { width: 320px; height: 320px; left: -80px; top: 10%; }
.hero-bg .c2 { width: 180px; height: 180px; right: -60px; top: 30%; animation-delay: 2s; }
.hero-bg .c3 { width: 120px; height: 120px; left: 50%; bottom: -60px; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideIn {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --- Блоки --- */
section {
  padding: 80px 0 120px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
  position: relative;
}

section.visible {
  opacity: 1;
  transform: none;
}

/* Однотонные фоны для секций */
#why {
  background: #EBEBEB;
}

#services {
  background: #F7F7F7;
}

#stats {
  padding-bottom: 60px;
}

#geo {
  padding-top: 0;
}

#contacts {
  background: #EBEBEB;
}

.section-title {
  font-size: var(--headline-2);
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: var(--spacing-xs);
}

/* --- Почему мы --- */
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-l);
  width: 100%;
  margin: 0 auto;
}

.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: var(--spacing-l);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, .15) 0px 12px 12px -8px;
  background: #FFF6F4;
}

.why-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: var(--spacing-m);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover i {
  transform: scale(1.1);
  color: var(--accent-dark);
}

.card-image {
  margin-bottom: var(--spacing-m);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  display: block;
}

.why-card-title {
  font-weight: 600;
  margin-bottom: var(--spacing-s);
  font-size: var(--headline-4);
}

.card-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 0;
  transform: translateY(-10px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.card-description::-webkit-scrollbar {
  display: none;
}

.card-description p {
  margin: 0;
  font-size: var(--font-size-m);
  color: var(--text-secondary);
  line-height: 1.5;
}

.card-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: var(--font-size-s);
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: var(--spacing-s);
  padding-top: 0;
  line-height: 1.2;
  transform: translateY(0);
}

.card-hint i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  width: 1em;
  height: 1em;
  aspect-ratio: 1/1;
  opacity: 0.7;
  margin: 0;
  padding: 0;
  color: inherit;
}

.why-card:hover .card-description {
  opacity: 1;
  max-height: 300px;
  overflow: hidden;
  transform: translateY(0);
  margin-bottom: var(--spacing-s);
}

.why-card:hover .card-hint {
  opacity: 0;
  transform: translateY(-5px);
}

/* Мобильное активное состояние */
.why-card.active .card-description {
  opacity: 1;
  max-height: 300px;
  overflow: hidden;
  transform: translateY(0);
  margin-bottom: var(--spacing-s);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-card.active .card-hint {
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Сервисы --- */
.services-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: var(--spacing-m);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  min-height: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-m);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: rgba(0, 0, 0, .15) 0px 12px 12px -8px;
  background: #FFF6F4;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card i {
  font-size: 2rem;
  color: var(--accent);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
}

.service-card:hover i {
  transform: scale(1.1);
  color: var(--accent-dark);
}

.service-title {
  font-weight: 600;
  font-size: var(--font-size-l);
  color: var(--text-primary);
  line-height: 1.3;
}

/* --- Статистика --- */
.stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.stat-card {
  background: var(--accent);
  border-radius: var(--radius);
  padding: var(--spacing-xl);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: var(--accent-dark);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-s);
}

.stat-title {
  font-size: var(--font-size-l);
  font-weight: 600;
  opacity: 0.95;
}

/* --- О нас --- */
.about-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  margin-top: 40px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-l);
  padding: var(--spacing-l);
  background: #F7F7F7;
  border-radius: var(--radius);
  border: 1px solid rgba(246, 123, 86, 0.1);
  box-shadow: var(--card-shadow);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-item:hover {
  transform: translateY(-2px);
  background: #FFF6F4;
}

.about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  color: white;
  font-size: 1.5rem;
}

.about-text h3 {
  font-size: var(--headline-4);
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.about-text {
  min-height: auto;
  margin: 0;
  padding: 0;
}

.about-text p {
  font-size: var(--font-size-m);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* --- Гео --- */
.geo-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.geo-image {
  max-width: 80%;
  height: auto;
  border-radius: var(--radius);
}

/* --- Контакты --- */
.contact-form {
  width: 100%;
  margin: 0 auto;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: var(--radius);
  padding: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.02) 0%, rgba(96,165,250,0.02) 100%);
  z-index: -1;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: var(--spacing-m);
  border: 1px solid #e6e6e6;
  border-radius: var(--radius);
  font-size: var(--font-size-l);
  font-family: inherit;
  background: #f7f7f7;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(246, 123, 86, 0.1);
  background: #fff;
}

.contact-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 12px 32px;
  font-size: var(--font-size-l);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  height: var(--btn-height);
}

.contact-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, .15) 0px 12px 12px -8px;
}

.form-error {
  color: #ef4444;
  font-size: 0.98rem;
  margin-bottom: 10px;
  display: none;
}

.form-success {
  color: #22c55e;
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: none;
}

/* --- Хедер --- */
header.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header.nav-header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.2s ease;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: var(--accent);
  margin: 3px 0;
  transition: 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

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

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

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

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--btn-radius);
  padding: 10px 24px;
  font-size: var(--font-size-m);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  height: var(--btn-height);
}

.nav-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* --- Футер --- */
footer {
  background: var(--text);
  color: #fff;
  padding: var(--spacing-xl) 0;
  text-align: center;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-terms {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-terms:hover {
  color: #fff;
  text-decoration: underline;
}

/* --- Адаптив --- */
@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }
  .why-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: none;
  }
  .stats-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-text {
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-illustration {
    max-width: 500px;
  }
  .hero-illustration img {
    max-width: 100%;
    height: auto;
  }
  .hero-btn {
    height: 52px;
  }
  .contact-form button {
    height: 52px;
  }
}

@media (max-width: 600px) {
  .hero-illustration {
    max-width: 320px;
  }
  .hero-illustration img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }
  .burger-menu {
    display: flex;
    margin-left: auto;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 20px 0 10px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }
  .nav-menu li:last-child {
    border-bottom: none;
  }
  .nav-menu a {
    font-size: 1rem;
    display: block;
    padding: 10px 20px;
  }
  .nav-btn {
    margin: 15px 20px 5px;
    width: calc(100% - 40px);
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--btn-radius);
    padding: 12px 32px;
    font-size: var(--font-size-l);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 52px;
  }
  .nav-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
  }
}

@media (max-width: 600px) {
  header.hero {
    min-height: calc(100vh - 70px);
    padding-top: 70px;
  }
  .hero-title { 
    font-size: var(--headline-2); 
    line-height: 1.2;
  }
  .section-title { font-size: var(--headline-3); margin-bottom: var(--spacing-xl); }
  section { padding: var(--spacing-xl) 0 var(--spacing-xl); }
  .about-list {
    gap: var(--spacing-m);
  }
  .why-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .card-description {
    max-height: 150px;
    overflow: hidden;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--card-bg) !important;
    z-index: 10 !important;
    box-shadow: var(--card-shadow) !important;
    border-radius: var(--radius) !important;
    margin: var(--spacing-s) 0 !important;
    padding: var(--spacing-m) !important;
  }
  .why-card.active .card-description {
    position: static !important;
    margin: var(--spacing-s) 0 !important;
    padding: var(--spacing-m) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    max-height: 300px !important;
    transform: translateY(0) !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  .card-content {
    display: block !important;
    flex: none !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  .card-description {
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transform: translateY(-10px) !important;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin-bottom: 0 !important;
  }
  .card-hint {
    margin-top: var(--spacing-xs);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  .why-card.active .card-hint {
    opacity: 0 !important;
    transform: translateY(-5px) !important;
  }
  .why-card {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    flex: none !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    position: relative !important;
  }
  .card-image {
    height: 80px !important;
    margin-bottom: var(--spacing-s) !important;
  }
  .services-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .stats-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .about-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .hero-btn {
    height: 52px;
  }
  .contact-form button {
    height: 52px;
  }
  .why-card, .service-card { 
    padding: var(--spacing-m) !important; 
    max-width: 100%;
    min-width: auto;
  }
  .contact-form { 
    padding: var(--spacing-l); 
    margin: 0;
  }
  .hero-btn {
    height: 52px;
  }
  .contact-form button {
    height: 52px;
  }
  .geo-image {
    max-width: 100%;
    margin-top: 20px;
  }
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .footer-content { 
    padding: 0 16px;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
} 