/* Service Detail Toggle Styles */
.est-toggle-wrapper {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.est-toggle-item + .est-toggle-item {
  border-top: 1px solid #eee;
}

.est-toggle-header {
  background: #f7f7f7;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.est-toggle-header:hover {
  background: #eaeaea;
}

.est-toggle-body {
  display: none;
  padding: 20px;
  background: #fff;
}

.est-toggle-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.est-toggle-image img {
  max-width: 250px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.est-toggle-text {
  flex: 1;
  min-width: 200px;
}

.est-cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.est-cta-btn:hover {
  background: #005bb5;
}

@media screen and (max-width: 768px) {
  .est-toggle-content {
    flex-direction: column;
  }

  .est-toggle-image img {
    max-width: 100%;
  }
}