
.breadcrumbs {
  margin: 32px 0 18px 0;
  font-size: 1em;
  color: #888;
}
.breadcrumbs a {
  color: #1877ff;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  padding: 48px 0 64px 0;
}
.about-container {
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
}
.about-title {
  font-size: 2.5em;
  font-weight: 800;
  margin-bottom: 28px;
  color: #222;
  text-align: left;
}
.about-text {
  font-size: 1.18em;
  color: #222;
  line-height: 1.7;
  background: #f7f9fd;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 36px 28px;
  margin-bottom: 48px;
}
@media (max-width: 700px) {
  .about-title { font-size: 1.4em; }
  .about-text { padding: 14px 6px; font-size: 1em; }
}

.home-cta-wide {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fafbfc;
  padding: 32px 0 32px 0;
}
.home-cta-wide-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 32px 48px;
  max-width: 1400px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.home-cta-wide-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff6f2;
  box-shadow: 0 2px 8px rgba(255,94,46,0.07);
}
.home-cta-wide-content {
  flex: 1 1 0;
  padding: 0 32px;
  border-right: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-cta-wide-service {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.home-cta-wide-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 4px;
}
.home-cta-wide-desc {
  color: #222;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.6;
}
.home-cta-wide-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
  align-items: stretch;
}
.home-cta-wide-phone,
.home-cta-wide-book {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-weight: 700;
  font-size: 1.2em;
  border-radius: 24px;
  padding: 16px 42px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.home-cta-wide-phone {
  background: #ff5e2e;
  color: #fff;
}
.home-cta-wide-book {
  background: #1877ff;
  color: #fff;
}
.home-cta-wide-phone:hover {
  background: #e04c1a;
}
.home-cta-wide-book:hover {
  background: #0d5fd3;
}
@media (max-width: 900px) {
  .home-cta-wide-container {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 16px;
  }
  .home-cta-wide-content {
    border: none;
    padding: 0;
  }
  .home-cta-wide-actions {
    align-items: stretch;
    min-width: 0;
  }
  .home-cta-wide-title {
    font-size: 1.3em;
  }
  .home-cta-wide-desc {
    font-size: 1.05em;
  }
}
