.ma-container {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}


.ma-visual-section {
    flex: 1.2;
    display: flex;
    justify-content: center;
    width: 100%;
}

.ma-main-diagram {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 500px; 
    object-fit: contain;
}

.ma-content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.ma-feature-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ma-icon-wrap {
    flex-shrink: 0;
    width: 28px;
    padding-top: 4px;
}

.ma-wheelchair-img {
    width: 100%;
    height: auto;
    display: block;
}

.ma-text-wrap p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

.ma-highlight-blue {
    color: #006eb3;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .ma-container {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .ma-container {
        flex-direction: column;
        text-align: left; 
    }

    .ma-visual-section {
        flex: none;
        margin-bottom: 20px;
    }

    .ma-main-diagram {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .ma-page-wrapper {
        padding: 20px 10px;
    }

    .ma-main-diagram {
        max-width: 100%;
    }

    .ma-feature-block {
        gap: 10px;
    }

    .ma-icon-wrap {
        width: 24px;
    }

}

.newsLetter_div {
  text-align: center;
  padding: 1rem 0;

}

.btnsubmit {
  background-color: var(--background);
  color: #ffffff;
  padding: 18px 45px; 
  font-size: 22px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btnsubmit:hover {
  background-color: var(--background);
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.newsLetter_a {
    display: flex;
    justify-content: center;
    padding: 30px 0;
}


.testimonial-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.testimonial-card {
  width: 48%;
  background: linear-gradient(to bottom, #c6def7 0%, #e2effd 100%);
  border: 2px solid #333;
  border-radius: 15px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
  color: #1a56c0;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.testimonial-author {
  font-weight: normal;
  display: block;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .testimonial-row {
    flex-direction: column;
  }
  .testimonial-card {
    width: 100%;
  }
}
