* {
  box-sizing: border-box;
}

:root {
  --accent: #6f796f;
}


.highlight {
  color: var(--accent);
  font-weight: 600;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;

  padding-top: 50px;     /* высота хедера */
  padding-bottom: 0px;  /* реальная высота футера */
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #222;

  padding-top: 70px;
}

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

  flex: 1;
}

.container-nav {
  max-width: 1000px;   /* или 1100px */
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #212121;
  color: #fff;
  z-index: 1000;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Левая зона */
.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;

}

/* Правая зона */
.nav-right {
  display: flex;
  gap: 20px;
}

.nav-btn {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 14px;
  border: 1px solid var(--accent);
  border-radius: 4px;
}

.nav-btn:hover {
  background: var(--accent);
}


.logo img {
  height: 60px;   /* нормальный размер 40px*/
  transform: translateY(-12px); /* ← подними вверх */
  width: auto;
  display: block;
}

.menu {
  display: flex;
  gap: 30px;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.nav-phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

.header-text {
  margin-top: 10px;
}

.phone {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}




.hero {
  padding: 40px 20px;
  text-align: center;
  background: #f5f5f5;
}
.hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: 18px;
  color: #555;
}



.cars {
  padding: 40px 20px;
  border-radius: 12px;
  background: #fafafa;
}

.car-card {
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px; /* ключевая вещь */
}
.car-card img {
  border-radius: 12px;
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.car-title {
  font-size: 22px;
  font-weight: bold;
}

.car-subtitle {
  color: #666;
  font-size: 11px;
}
.car-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 14px;
}
.car-terms {
  margin-top: 8px;
  padding: 14px;
  background: #f5f5f5;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.car-btn {
  margin-top: 20px;
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
}

.form-section {
  padding: 40px 20px;
  max-width: 500px;
  margin: auto;
}


.car-meta {
  font-size: 14px;
  color: #555;
}

.car-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.car {
  width: 300px;
  text-align: center;
}

.car img {
  width: 100%;
}

/* Оставить заявку *//* Оставить заявку *//* Оставить заявку *//* Оставить заявку */
.cta { 
  max-width: 700px;
  margin: 80px auto;
  padding: 40px 24px;

  background: #ffffff;
  border-radius: 24px;

  text-align: center;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 28px;
  line-height: 1.5;
}

.order-form input,
.order-form select,

.order-form textarea{
  font-size: 16px;
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
}

.order-form button {
  padding: 16px;
  font-size: 16px;
  font-weight: 600;

  border: none;
  border-radius: 14px;

  background: var(--accent);
  color: #fff;

  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.order-form button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* БАЗОВОЕ СОСТОЯНИЕ — НЕАКТИВНАЯ */
.order-form .submit-btn:disabled {
  background: #e5e5e5;
  color: #555;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* АКТИВНАЯ КНОПКА */
.order-form .submit-btn:not(:disabled) {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.call-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px 20px;
  cursor: pointer;
  border-radius: 6px;
}


@media (max-width: 600px) {
  .cta {
    margin: 40px 16px;
    padding: 32px 20px;
  }

  .cta h2 {
    font-size: 24px;
  }
}
/* Оставить заявку *//* Оставить заявку *//* Оставить заявку *//* Оставить заявку */
/* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ */
.photo-slider {
  position: relative;
  max-width: 800px;
  margin: 40px auto;
}

.slider-window {
  overflow: hidden;
  border-radius: 24px;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.08),
    0 4px 12px rgba(0,0,0,0.05);
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
}

.slider-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

/* стрелки */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 44px;
  height: 44px;

  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 28px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

/* счётчик */
.slider-counter {
  margin-top: 12px;
  text-align: center;
  font-size: 14px;
  color: #666;
}
/* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ *//* ФОТОАЛЬБОМ */
/* ХАРАКТЕРИСТИКИ *//* ХАРАКТЕРИСТИКИ *//* ХАРАКТЕРИСТИКИ *//* ХАРАКТЕРИСТИКИ */
.specs {
  max-width: 700px;
  margin: 40px auto;
  border-radius: 20px;
  background: #fff;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.06),
    0 4px 12px rgba(0,0,0,0.04);

  overflow: hidden;
}

/* кнопка */
.specs-toggle {
  width: 100%;
  padding: 18px 22px;

  background: none;
  border: none;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.specs-toggle:hover {
  background: #f5f5f5;
}

/* стрелка */
.specs .arrow {
  transition: transform 0.3s ease;
}

/* контент */
.specs-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.specs-content ul {
  list-style: none;
  padding: 0 22px 22px;
  margin: 0;
}

.specs-content li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid #eee;
}

/* основной список */
.specs-main {
  list-style: none;
  margin: 0;
  padding: 0 22px 22px;
}

/* Для чек-бокса */
.privacy-group {
  margin: 10px 0 15px 0;
}

.privacy-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
}

.privacy-label input {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1.5px solid #555;
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
}

.privacy-label input:checked + .checkmark {
  background-color: #007bff;
  border-color: #007bff;
}

.privacy-label input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy-text a {
  color: #007bff;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

/* группа "Комплектация" */
.specs-group {
  border-bottom: none;
}

/* подпункты комплектации */
.specs-sub {
  list-style: none;
  margin-top: 12px;
  padding-left: 18px; /* ← ВОТ ТА САМАЯ ТАБУЛЯЦИЯ */
}

.specs-sub li {
  padding: 4px 0;
  font-size: 14px;
  color: #555;
}

.specs-sub span {
  font-weight: 500;
}




.specs.open .arrow {
  transform: rotate(180deg);
}
/* ХАРАКТЕРИСТИКИ *//* ХАРАКТЕРИСТИКИ *//* ХАРАКТЕРИСТИКИ *//* ХАРАКТЕРИСТИКИ */
/* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН */
.hero-slogan {
  padding: 13px 16px 32px;
  text-align: center;
  background: #f5f5f5;
}

.hero-slogan h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.hero-slogan p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}
/* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН *//* СЛОГНАН */
/* title text about car *//* title text about car *//* title text about car */
.car-hero {
  max-width: 800px;
  margin: 40px auto 20px;
  padding: 0 20px;
  text-align: center;
}

.car-hero h2 {
  font-size: 28px;
  margin-bottom: 6px;
}

.car-hero-subtitle {
  font-size: 15px;
  color: #777;
}
/* title text about car *//* title text about car *//* title text about car */

/* For first block on indexhtml *//* For first block on indexhtml *//* For first block on indexhtml */
.heroindex {
  padding: 40px 0;
}

.hero-contentindex {
  max-width: 760px;
}

.heroindex h1 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-subtitleindex {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 40px;
}

.hero-actionsindex {
  margin-top: 10px;
  margin-top: 10px;
  display: flex;
  gap: 16px; /* расстояние между кнопками */
  flex-wrap: wrap; /* чтобы на мобиле переносились */
}

.btn-outline {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid #6f796f;
  color: #6f796f;
  text-decoration: none;
  font-size: 16px;
}

.btn-outline:hover {
  background-color: #6f796f;
  color: #fff;
}

.btn-primary {
  display: inline-block;
  padding: 14px 22px;
  background-color: #6f796f;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.btn-primary:hover {
  opacity: 0.9;
}
/* For first block on indexhtml *//* For first block on indexhtml *//* For first block on indexhtml */
/* For second block on indexhtml *//* For second block on indexhtml *//* For second block on indexhtml */
.format-section {
  padding: 40px 0;
  background-color: #f8f8f8;
}

.format-card {
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 48px 40px;
}

.format-heading {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 28px;
}

.format-text p {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  margin-bottom: 18px;
}

.format-text p:last-child {
  margin-bottom: 0;
}

/* Мобилка */

@media (max-width: 768px) {
  .format-card {
    padding: 32px 20px;
  }

  .format-heading {
    font-size: 22px;
  }
}

/* For second block on indexhtml *//* For second block on indexhtml *//* For second block on indexhtml */
/* For third block on indexhtml *//* For third block on indexhtml *//* For third block on indexhtml */
.fit-block {
  padding: 32px 0;
}

.fit-block h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}

.fit-columns {
  display: flex;
  gap: 60px;
  max-width: 900px;
}

.fit-column {
  flex: 1;
}

.fit-column h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.fit-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fit-column li {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}

.fit-column li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

.fit-note {
  max-width: 720px;
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
/* For third block on indexhtml *//* For third block on indexhtml *//* For third block on indexhtml */
/* For fourd block on indexhtml *//* For fourd block on indexhtml *//* For fourd block on indexhtml */
.process-block {
  padding: 40px 0;
}

.process-block h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 28px;
}

.process-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.process-steps li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.process-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  color: #666;
}

.process-note {
  max-width: 720px;
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}
/* For fourd block on indexhtml *//* For fourd block on indexhtml *//* For fourd block on indexhtml */
/* For fird block on indexhtml *//* For fird block on indexhtml *//* For fird block on indexhtml */

.terms-block {
  padding: 40px 0;
  border-top: 1px solid #e5e5e5;
}

.terms-block h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
}

.terms-intro {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 24px;
  max-width: 720px;
}

.terms-group {
  margin-bottom: 24px;
}

.terms-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.terms-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-group li {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.terms-group li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #999;
}

.terms-note {
  max-width: 720px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 8px;
}
/* For fird block on indexhtml *//* For fird block on indexhtml *//* For fird block on indexhtml */
/* For sixrd block on indexhtml *//* For sixrd block on indexhtml *//* For sixrd block on indexhtml */
.info-slice {
  padding: 20px 0;
}

.price-logic {
  border-top: 1px solid #e5e5e5;
}

.wrap-narrow {
  max-width: 760px;
}

.info-heading {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 24px;
}

.info-body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.info-body p {
  margin-bottom: 16px;
}

.info-list {
  margin: 12px 0 20px 18px;
  padding: 0;
}

.info-list li {
  margin-bottom: 8px;
}

.info-note {
  background-color: #f7f8f7;
  border-left: 4px solid #6f796f;
  padding: 16px 18px;
  margin: 24px 0;
}

.info-note p {
  margin: 0;
}

.info-final {
  font-weight: 500;
}

/* Адаптация под мобильные */
@media (max-width: 768px) {
  .info-slice {
    padding: 18px 0;
  }

  .info-heading {
    font-size: 22px;
  }

  .info-body {
    font-size: 15px;
  }
}
/* For sixrd block on indexhtml *//* For sixrd block on indexhtml *//* For sixrd block on indexhtml */
/* For sevenrd block on indexhtml *//* For sevenrd block on indexhtml *//* For sevenrd block on indexhtml */
.trust-terms {
  border-top: 1px solid #e5e5e5;
}
/* For sevenrd block on indexhtml *//* For sevenrd block on indexhtml *//* For sevenrd block on indexhtml */
/* For eghrd block on indexhtml *//* For eghrd block on indexhtml *//* For eghrd block on indexhtml */
.fleet-section {
  border-top: 1px solid #e5e5e5;
}

.fleet-note {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/* Scroll-контейнер */

.fleet-scroll {
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.fleet-scroll::-webkit-scrollbar {
  height: 6px;
}

.fleet-scroll::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 4px;
}

/* Лента */

.fleet-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  scroll-snap-type: x mandatory;
}

/* Карточка */

.fleet-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}

.fleet-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

.fleet-card span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

/* Мобилка */

@media (max-width: 768px) {
  .fleet-card {
    flex: 0 0 220px;
  }

  .fleet-card img {
    height: 160px;
  }
}
/* For eghrd block on indexhtml *//* For eghrd block on indexhtml *//* For eghrd block on indexhtml */
/* For ninrd block on indexhtml *//* For ninrd block on indexhtml *//* For ninrd block on indexhtml */

.client-filter {
  border-top: 1px solid #e5e5e5;
}

/* Список требований */

.requirements-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.requirements-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.5;
}

.requirements-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #777;
}
/* For ninrd block on indexhtml *//* For ninrd block on indexhtml *//* For ninrd block on indexhtml */
/* For tenrd block on indexhtml *//* For tenrd block on indexhtml *//* For tenrd block on indexhtml */
.stories-section {
  border-top: 1px solid #e5e5e5;
}

.stories-intro {
  margin-bottom: 40px;
  font-size: 15px;
  color: #666;
}

/* История */

.story-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.story-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Текст */

.story-content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.story-content p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* Честная история — без красного, без давления */

.story-warning {
  opacity: 0.9;
}

/* Мобилка */

@media (max-width: 768px) {
  .story-item {
    flex-direction: column;
  }

  .story-photo {
    width: 56px;
    height: 56px;
  }
}
/* For tenrd block on indexhtml *//* For tenrd block on indexhtml *//* For tenrd block on indexhtml */
.footer {
  display: flex;
  align-items: center;

  width: 100%;
  background: #212121;
  color: #aaa;

  border-top-left-radius: 20px;
  border-top-right-radius: 20px;

  padding: 8px 16px;
  font-size: 11px;
  line-height: 1.05;

  box-sizing: border-box;
}

.footer-side {
  width: 32px;              /* фиксируем ширину колонок */
  display: flex;
  justify-content: center;
}

.footer-center {
  flex: 1;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer-icon img {
  width: 50px;
  height: 50px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.footer-icon:hover img {
  opacity: 1;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


.contacts-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 16px;
}

.contacts-page h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contacts-page h2 {
  font-size: 20px;
  margin: 24px 0 12px;
}

.contacts-intro {
  font-size: 16px;
  line-height: 1.6;
}

.contacts-info address {
  font-style: normal;
  line-height: 1.7;
}

.contacts-info a {
  color: inherit;
  text-decoration: underline;
}

.contacts-map iframe {
  border-radius: 16px;
  margin-top: 12px;
}

.address-note {
  margin-top: 20px;
  padding: 16px;
  background-color: #f5f5f5;
  border-left: 4px solid #8b0000;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .footer-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
}


@media (max-width: 768px) {
  .fit-columns {
    flex-direction: column;
    gap: 32px;
  }

  .fit-block h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .fit-column h3 {
    font-size: 17px;
  }

  .fit-column li {
    font-size: 15px;
  }

  .fit-note {
    font-size: 14px;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .process-block h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .process-steps li {
    font-size: 15px;
    padding-left: 40px;
  }

  .process-steps li::before {
    width: 24px;
    height: 24px;
    line-height: 22px;
    font-size: 13px;
  }

  .process-note {
    font-size: 14px;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .terms-block h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .terms-intro,
  .terms-group li {
    font-size: 15px;
  }

  .terms-note {
    font-size: 14px;
  }

  .terms-group {
    margin-bottom: 20px;
  }
}




@media (min-width: 1200px) {
  /* ===== CONTAINER ===== */
  .container,
  .container-nav {
    max-width: 1000px;
    padding: 0 32px;
    margin: 0 auto;
  }

  /* ===== BASE TEXT ===== */
  body {
    font-size: 17px;
  }

  .info-body,
  .format-text p,
  .terms-intro,
  .process-steps li,
  .fit-column li {
    font-size: 17px;
    line-height: 1.75;
  }

  /* ===== HEADINGS ===== */
  h1 {
    font-size: 34px;
    line-height: 1;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  h2 {
    font-size: 26px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 18px;
  }
  
  h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 12px;
  }

  p {
    margin-bottom: 16px;
  }
  
  small {
    font-size: 14px;
    color: #666;
  }

  .format-heading,
  .info-heading {
    font-size: 30px;
  }

  /* ===== CAR CARDS ===== */
  .car-card {
    padding: 28px;
  }

  .car-title {
    font-size: 24px;
  }

  .car-benefits,
  .car-terms {
    font-size: 15px;
  }
}


.footer-policy {
  color: #999;
  font-size: 14px;
  text-decoration: none;
}

.footer-policy:hover {
  text-decoration: underline;
}