.company-details-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Arial", sans-serif;
}

.company-header {
  text-align: center;
  padding-top: 70px;
}

.company-header h1 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
}

.company-tagline {
  font-size: 1.2em;
  color: #666;
}

.company-info,
.company-services,
.company-schedule,
.company-reviews {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card i {
  color: #007bff;
}

.services-grid,
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.service-card,
.schedule-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  transition: box-shadow 0.3s ease;
}

.service-card:hover,
.schedule-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #007bff;
  margin-bottom: 10px;
}

.service-price {
  font-weight: bold;
  color: #28a745;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day {
  font-weight: bold;
}

.cta-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
}

.btn-secondary {
  background-color: #6c757d;
}

.btn:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .services-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .cta-container {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }
}
