/* ===== Страница О нас ===== */
.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ======= Хлебные крошки (современный микс) ======= */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  margin-bottom: 30px;
  padding: 10px 16px;
  border-radius: 8px;
  background: linear-gradient(90deg, #fafafa, #fff);
  border: 1px solid #eee;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.3px;
}

.breadcrumbs a {
  color: #333;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumbs a:hover {
  background-color: #f3f3f3;
  color: #000;
}

.breadcrumbs span {
  color: #999;
  font-weight: 500;
  margin: 0 6px;
}

/* ===== Hero ===== */
.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.about-hero-text {
  flex: 1;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

/* Цитата */
.about-intro {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  margin: 0;
  padding: 20px 25px;
  border-left: 4px solid #f7d663;
  background: #fafafa;
  border-radius: 8px;
  font-style: italic;
}

/* Картинка */
.about-hero-img {
  flex: 1;
  max-width: 500px;
}
.about-hero-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===== Адаптив ===== */
@media (max-width: 900px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
  }
  .about-hero-text {
    order: 1;
  }
  .about-hero-img {
    order: 2;
    max-width: 100%;
  }
  .about-intro {
    text-align: left;
  }
}


/* ===== Общие секции ===== */
.about-page section {
  margin-bottom: 60px;
}
.about-page section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
  position: relative;
}
.about-page section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f7d663; /* акцентный цвет */
  margin-top: 8px;
  border-radius: 2px;
}

/* ===== Преимущества ===== */
.about-benefits ul {
  list-style: none;
  padding: 0;
}
.about-benefits li {
  background: #f7f7f7;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.about-benefits li::before {
  content: "✔";
  color: #2e7d32;
  font-weight: bold;
}
.about-benefits li:hover {
  background: #f7d663;
  color: #222;
}

/* ===== Сеть салонов ===== */
.about-salons ul {
  list-style: disc;
  padding-left: 20px;
}
.about-salons li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* ===== Производитель ===== */
.about-producer p {
  background: #fafafa;
  border-left: 5px solid #f7d663;
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
}

/* Иконки в заголовках */
.about-page h2 .icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-left: 6px;
}


/* ===== Адаптив ===== */
@media (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }
  .about-page section h2 {
    font-size: 22px;
  }
  .about-intro {
    font-size: 16px;
  }
}
