<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #023246;
}

/* Section Styles */
.why-choose-us {
  background: linear-gradient(to bottom, #D4E2EA, #F2F2F2);
  padding: 30px 20px;
}

/* Centered Heading + Text */
.section-header {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #287094;
  margin-bottom: 20px;
}

.section-header p {
  font-size: clamp(0.95rem, 3vw, 1.5rem);
  color: #023246;
  line-height: 1.6;
}

.feature-card h3 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.feature-card p {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
}


/* Updated Content Layout */
.content-row {
  display: flex;
  justify-content: space-between;
  align-items: center; /*  Vertically center image with cards */
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}



/* Ensure image column uses full height */
.image-column {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-column img {
  max-width: 100%;
  border-radius: 12px;
 
}


/* Right Column - Cards */
.cards-column {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  background-color: #ffffff;
  border-left: 6px solid #287094;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 2px 10px rgba(40, 112, 148, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(40, 112, 148, 0.18);
}

.feature-card h3 {
  margin-top: 0;
  color: #1B4B63;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-card p {
  margin: 0;
  color: #08161E;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .content-row {
    flex-direction: column;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
</pre></body></html>