.benefits-section {
  overflow: hidden;
}

.benefit-image {
  height: 100%;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.benefit-box {
  background-color: #e8e6e6;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 1rem;
}

.benefit-box ul li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .benefit-image img {
    height: 300px;
  }
  .benefit-box {
    padding: 2rem;
  }
}

.process-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  text-align: left;
}

@media (max-width: 768px) {
  h2 {
    text-align: center;
  }

  .col-md-4 {
    text-align: center !important;
  }
}

.img-check {
  width: 24px;   
  height: 24px; 
}

.txt-18 {
  font-size: 18px;
}

.pddn-110 {
  padding: 0px 110px 0px 110px;
}

.steps-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.step-card {
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;

  min-height: 260px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  background: #fadba0;
}

.step-icon {
  width: 120px;  
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px auto;
}

.step-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

.yellow-1 {
  background-color: #F5A600;
}

.yellow-2 {
  background-color: #FFB300;
}

.yellow-3 {
  background-color: #FDBA3A;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 220px;
  }

  .step-icon {
    width: 90px;
    height: 90px;
  }
}


.accordion {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #e8e6e6;
}

.accordion-item {
  border-bottom: 1px solid #d5d5d5;
}

.accordion-header {
  padding: 20px 18px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8e6e6;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #dddddd;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 15px;
  color: #333;
  background: #e8e6e6;
  transition: height 0.35s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
  height: auto;             
  padding: 15px 18px 20px;  
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.accordion-item.active .arrow {
  transform: rotate(180deg);
}