/* Titles */
.mini-title-whithout-background {
  border-radius: 20px;
  border: none;
  font-weight: 700;
  color: #051B05;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-titles {
  color: #051B05;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
}

.second-title {
  font-weight: 700;
}

/* Paragraphs */
.main-p2 {
  color: #595B62;
  font-size: 18px;
  font-weight: 400;
}

/* Service Details Section */
.home-section6-number-service {
  font-size: 20px;
  color: transparent;
  -webkit-text-stroke: 1px #2c3e50;
  font-family: Arial, sans-serif;
}

.service-details-cm {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-outcome {
  max-width: 600px;
  color: #1a1a1a;
}

.service-outcome h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-outcome ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-outcome li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.service-outcome li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-size: 1rem;
}

/* Service Images */
.service-img-1 {
  border-radius: 5px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #595B62;
}

.accordion-header:hover {
  background: #f1f1f1;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fafafa;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body p {
  margin: 15px 0;
  color: #595B62;
}

/* Active accordion */
.accordion-item.active .accordion-body {
  max-height: 200px;
  padding: 15px 20px;
}

.accordion-item.active .icon {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 992px) {
  .main-titles { font-size: 40px; }
}

@media (max-width: 768px) {
  .service-details-cm { flex-direction: column; align-items: flex-start; }
}