
    .services-section {
      padding: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .services-section h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 2.5em;
      color: #333;
    }
    .main-container {
      display: flex;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
    }
    .main-container.reverse {
      flex-direction: row-reverse;
    }
    .image-container {
      width: 25%;
      overflow: hidden;
    }
    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .text-container {
      width: 75%;
      padding: 20px;
      box-sizing: border-box;
    }
    .image-container.large {
      width: 75%;
    }
    .text-container.small {
      width: 25%;
    }
    .text-container h3 {
      margin-top: 0;
      font-size: 1.8em;
      font-weight: bold;
      color: #fc9c64;
    }
    .text-container p {
      font-size: 1em;
      color: #555;
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .main-container, .main-container.reverse {
        flex-direction: column;
      }
      .image-container, .text-container, .image-container.large, .text-container.small {
        width: 100%;
      }
    }

  .faq-section {
  padding:  20px;
  background: #f8f8f8;
}
.faq-container {
  display: flex;
  flex-wrap: nowrap; /* Prevent image and FAQ from wrapping */
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  align-items: flex-start; /* Keeps both sections aligned to top */
}

.faq-image {
  width: 600px;
  height: 500px;
  flex-shrink: 0; /* Prevent it from shrinking when FAQ expands */
  overflow: hidden;
  position: relative;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-content {
  width: calc(100% - 600px); /* Remaining space after image */
  max-height: 500px; /* Match image height */
  overflow-y: auto; /* Scroll if FAQ content is tall */
  padding: 40px 30px;
  box-sizing: border-box;
}

.faq-content h2 {
  margin-bottom: 25px;
  font-size: 28px;
  color: #2c3e50;
}

.accordion-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-header {
  background: #f4f4f4;
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
}

.accordion-header:hover {
  background: #e0e0e0;
}

.accordion-header .icon {
  margin-right: 10px;
  font-weight: bold;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fff;
  padding: 0 15px;
}

.accordion-body.open {
  padding: 15px;
}

.accordion-body p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}
