.service-trusted-new {
  padding: 50px 0;
  background-color: #000000;
  width: 100%;
}

.trusted-new-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  gap: 80px;
  align-items: stretch;
  /* CRITICAL: Height of both columns matches automatically */
}

/* Updated columns */
.trusted-new-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
}

.trusted-new-right {
  flex: 0.9;
  text-align: left;
  display: flex;
  flex-direction: column;
  padding: 5px 0;
  /* Tiny vertical padding for perfect edge alignment */
}

/* Image on Left - Height matched to content */
.trusted-image-wrapper {
  width: 100%;
  flex-grow: 1;
  /* Forces the box to take the full height of the container */
  min-height: 520px;
  /* Minimum height for visual stability */
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.trusted-main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Fills the dynamically sized wrapper */
  object-fit: cover;
  /* Crops architectural detail precisely */
  display: block;
}

/* Typography on Right - Symmetrical spacing */
.trusted-new-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.25;
}

.trusted-new-title .text-primary {
  color: #54b248;
}

.trusted-new-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.trusted-new-content p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}

/* Button Styling (Book a Meeting) */
.book-meeting-btn {
  background-color: #54b248;
  color: #ffffff;
  border: none;
  padding: 20px 55px;
  border-radius: 60px;
  font-size: 19px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 25px rgba(84, 178, 72, 0.3);
  display: inline-block;
  width: fit-content;
  margin-top: auto;
  /* Always keeps the button at the bottom edge */
}

.book-meeting-btn:hover {
  background-color: #469c3a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(84, 178, 72, 0.5);
}

/* Responsive Scaling */
@media (max-width: 1200px) {
  .trusted-new-container {
    gap: 40px;
    padding: 0 30px;
  }
}

@media (max-width: 1024px) {
  .trusted-new-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 0 20px;
    gap: 40px;
  }

  .trusted-new-left {
    width: 100%;
    flex: none;
  }

  .trusted-image-wrapper {
    min-height: 400px;
    height: 400px;
    width: 100%;
    flex-grow: 0;
  }

  .trusted-new-right {
    text-align: center;
  }

  .trusted-new-title {
    font-size: 36px;
  }

  .book-meeting-btn {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .service-trusted-new {
    padding: 60px 15px;
  }

  .trusted-new-container {
    padding: 0;
    gap: 30px;
  }

  .trusted-image-wrapper {
    min-height: 350px;
    height: 350px;
    width: 100%;
    border-radius: 16px;
  }

  .trusted-new-title {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .trusted-new-content p {
    font-size: 16px;
  }

  .book-meeting-btn {
    padding: 15px 35px;
    font-size: 16px;
  }
}