/* Section 5 Styling */
 :root {
      --primary: #111a72;
      --text: #444;
      --max-width: 1200px;
    }

       body {
      margin: 0;
       padding: 0;
      background: #fff;
      color: var(--text);
    }

.section-5 {
  padding: 4rem 1rem;
  background-color: #ffffff;
  color: #333;
 
}

.section-5 .container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.section-5 .section-title {
  font-size: 2rem;
  font-weight: 400;
    text-align: left;
   font-family: "Syne", sans-serif;
 color: var(--primary);
  margin-bottom: 2rem;
}

.section-5 .image-wrapper {
  margin-bottom: 2rem;
}

.section-5 .section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Typography */
.section-5 .section-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: justify;
  font-family: "poppins", sans-serif;
}

/* Responsive Typography */
@media (min-width: 768px) {
  .section-5 .section-title {
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
     color: var(--primary);
      font-family: "Syne", sans-serif;
  }

  .section-5 .section-text p {
    font-size: 14px;
    font-family: "poppins", sans-serif;
    max-width: 100%;
    letter-spacing: 1px;
  }
}

@media (min-width: 1024px) {
  .section-5 {
    padding: 5rem 2rem;
  }

  .section-5 .section-title {
   font-size: 2rem;
        font-weight: 400;
        color: var(--primary);
        font-family: "Syne", sans-serif;
        margin-bottom: 5rem;
        text-align: left;
  }
}
