
.ac-categories-section {
  background: #f7f9fd;
  padding: 130px 0 40px 0;
  text-align: center;
}
.ac-categories-header {
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  text-align: center;
}
.ac-categories-title {
  color: #2196f3;
  font-size: 2.3em;
  font-weight: 800;
  margin-bottom: 10px;
}
.ac-categories-desc {
  color: #444;
  font-size: 1.1em;
  margin-bottom: 0;
}
.ac-categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 36px;
  max-width: 1300px;
  margin: 0 auto;
}
.ac-category-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  padding: 24px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
}
.ac-category-img-rect {
  width: 100%;
  max-width: 260px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}
.ac-category-title {
  font-size: 1.15em;
  font-weight: 600;
  color: #222;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 0;
}
.ac-category-divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 18px;
}
.ac-category-btn {
  display: block;
  width: 100%;
  background: #11171d;
  color: #fff;
  font-weight: 600;
  font-size: 1.08em;
  border-radius: 8px;
  padding: 14px 0;
  text-align: center;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s;
}
.ac-category-btn:hover {
  background: #2196f3;
  color: #fff;
}
@media (max-width: 1100px) {
  .ac-categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 18px;
  }
}
@media (max-width: 700px) {
  .ac-categories-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ac-category-img-rect {
    max-width: 100%;
    height: 100px;
  }
  .ac-categories-header {
    max-width: 95vw;
    padding: 0 16px;
    margin-bottom: 24px;
  }
  .ac-categories-title {
    font-size: 1.25em;
    line-height: 1.2;
    margin-bottom: 12px;
    word-break: break-word;
  }
  .ac-categories-desc {
    font-size: 1em;
    line-height: 1.4;
    word-break: break-word;
  }
}

.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: 24px 32px;
  max-width: 1300px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.home-cta-wide-photo img {
  width: 90px;
  height: 90px;
  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 24px;
  border-right: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-cta-wide-service {
  color: #444;
  font-size: 1em;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.home-cta-wide-title {
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 2px;
}
.home-cta-wide-desc {
  color: #222;
  font-size: 1em;
  font-weight: 400;
}
.home-cta-wide-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
  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.15em;
  border-radius: 24px;
  padding: 14px 38px;
  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: 18px;
    padding: 18px 8px;
  }
  .home-cta-wide-content {
    border: none;
    padding: 0;
  }
  .home-cta-wide-actions {
    align-items: stretch;
    min-width: 0;
  }
}
