.services-intro {
  /* padding: 8rem 2rem 0rem; */
  text-align: center;
}

.service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 100px auto;
  max-width: 600px;
}

.services-intro .section-eyebrow {
  color: #00d084;
  font-weight: 600;
  /* margin-bottom: 1rem; */
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.services-intro .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
  animation: slideInLeft 0.8s ease-out forwards;
}

.services-intro .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  animation: slideInRight 0.8s ease-out forwards;
}

.services-columns {
  padding: 2rem 2rem;
  background-color: #fff;
  color: #222;
}

.services-columns .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2.5rem 2rem;
}

.services-columns .grid-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

.services-columns .left-content {
  flex: 1;
  min-width: 280px;
}

.services-columns .left-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e1b10;
  /* Same rich brown as your image */
  line-height: 1.4;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.services-columns .right-content {
  flex: 1.5;
  min-width: 280px;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

@media (max-width: 768px) {
  .services-columns .grid-2 {
    flex-direction: column;
  }
}

.services-accordion {
  padding: 4rem 2rem;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  color: #2e1b10;
}

.services-accordion .container {
  margin: 0 auto;
  padding: 0 1rem;
}

.accordion-item {
  border-bottom: 1px solid #eee;
  padding: 2rem 1rem;
}

.accordion-item:first-child {
    border-top: 1px solid #eee;
}

.accordion-toggle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  padding: 1rem;
  background-color: transparent;
  color: #2e1b10;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.accordion-toggle:hover {
  background-color: #f8f8f8;
}

.accordion-toggle .icon {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  font-size: 1.6rem;
  background-color: #00d084;
  padding: 0.6rem;
  border-radius: 50%;
  color: #ffffff;
  flex-shrink: 0;
  text-align: center;
  align-content: center;
}

.accordion-toggle .arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #16a34a;
  margin-left: auto;
}

.accordion-item.active .accordion-toggle .arrow {
  transform: rotate(180deg);
  
}
.accordion-title {
  display: flex;
  justify-content: left;
  text-align: left;
}

.accordion-content {
  padding: 3rem 7rem;
  display: none;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  transition: max-height 0.4s ease, opacity 0.3s ease;

}

.accordion-item.active .accordion-content {
  display: block;
  animation: fadeSlideDown 0.4s ease-in-out;
    /* adjust as needed or set dynamically with JS */
    opacity: 1;
}

.accordion-content p {
  max-width: 821px;
  margin-bottom: 2rem;
}

.accordion-content p:last-child {
  margin-bottom: 0rem;
}

p.accordion-content-label {
  color: #00d084;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.accordion-content ul {
  width: 709px;
  padding-left: 1.5rem;
  list-style-type: disc;
  margin: 0;
  margin-bottom: 2rem;
  line-height: 32px;
}

.accordion-content li {
  margin-bottom: 0.5rem;
}

.accordion-content li span {  
  font-weight: 600;
}

.services-cta {
  position: relative;
  background-image: url('https://drawscoarchitecture.com/wp-content/uploads/2025/05/Frame-1987-1.png');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 2rem;
  margin: 2rem auto 6rem;
  max-width: 1200px;
}

.quote-cta__content {
  max-width: 600px;
  padding: 2rem;
  border-radius: 10px;
  color: #222;
}

.quote-cta__content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1e1e1e;
}

.quote-cta__content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #444;
}

.btn-quote {
  display: inline-block;
  background-color: #00cf7f;
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-quote:hover {
  background-color: #00b86c;
}










