.image-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3.2rem 2rem;
  width: 100%;
}

.image-text-section.reverse {
  flex-direction: row-reverse;
}

.img-side,
.text-side {
  flex: 1;
  max-width: 650px;
}

.img-side img {
  width: 100%;
}

.text-side h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  color: #0f2f4c;
}

.text-side p {
  line-height: 1.75;
  font-size: 1.04rem;
  color: #32506d;
}

.footer-sections {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 3.5rem 2rem;
  width: 100%;
  background: #eef5fb;
  border-top: 1px solid #dce9f3;
  border-bottom: 1px solid #dce9f3;
}

.footer-half {
  width: 50%;
}

.footer-half h2 {
  margin: 0 0 1rem;
  color: #0d3557;
}

.footer-half p {
  margin: 0.65rem 0;
  color: #32506d;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.icon {
  display: inline-block;
  padding: 0.48rem 0.95rem;
  border: 1px solid #afcbe3;
  background: #ffffff;
  color: #15456d;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.icon:hover {
  background: #e7f2fb;
  color: #0f4e86;
}

@media (max-width: 900px) {
  .image-text-section,
  .image-text-section.reverse {
    flex-direction: column;
    text-align: center;
    gap: 1.6rem;
    padding: 2.2rem 1rem;
  }

  .text-side {
    max-width: 100%;
  }

  .footer-sections {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .footer-half {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }
}
