.services-section {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  color: #01354d;
}

.our-approach {
  margin-bottom: 40px;
  text-align: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  background: #01354d;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #ffc107;
  color: #01354d;
}

.accordion-header.active {
  background: #ffc107;
  color: #01354d;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 20px;
  transition: max-height 0.4s ease;
}

.accordion-content p {
  margin: 15px 0;
  text-align: justify;
  color: #333;
}

ul {
  padding-left: 20px;   /* or 1.5rem */
  margin-top: 10px;
}

.landing-btn {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 5px;
    padding: 10px 20px;
    background: #ffc107;
    color: #01354d;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.landing-btn:hover {
    background-color: #01354d;
    color: #ffc107;
}