body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f9fafd;
  color: #1a2537;
}

.banner-sr {
  /* background: linear-gradient(120deg, #4bc6e9 60%, #81e6d9 100%); */
  background-image: url('../assets/about-banner.jpg');
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 40px 0 rgba(38,82,125,0.08);
}

.banner-content-sr h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.banner-content-sr p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn-sr {
  background: #1976d2;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1rem;
  border: none;
  border-radius: 26px;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
}

.cta-btn-sr:hover {
  background: #155c98;
}

.sr-content {
  padding: 50px 0 50px 0;
  background: #fff;
}

.sr-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  padding: 0 20px;
}

.sr-content-text {
  flex: 1 1 350px;
}

.sr-content-text h2 {
  color: #1976d2;
  font-size: 2rem;
  margin-bottom: 16px;
}

.sr-content-text p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.sr-content-text ul {
  margin: 0 0 25px 16px;
  padding: 0;
  font-size: 1rem;
}

.sr-content-text li {
  margin: 0 0 10px 0;
  padding-left: 8px;
}
.content-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.content-image img {
  max-width: 600px;
  border-radius: 18px;
  /* box-shadow: 0 8px 32px 0 rgba(38,82,125,0.10); */
  will-change: transform;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .sr-container {
    flex-direction: column;
    gap: 28px;
  }
  .sr-content-image {
    justify-content: flex-start;
  }
  .content-image img {
    width: 400px;
  
  }
}

/* Our Approach */
.our-approach {
  background-color: #fffcc8;
  padding: 40px 50px;     
  text-align: center;  
  color: #fff;          
}

.our-approach .text {
  font-size: 2rem;
  margin-bottom: 50px;
}
.our-approach h2 {
  font-size: 50px;
  font-weight: 600;
  margin: 30px 0;
  color: #52a73b;
}


.our-approach-img img {
  max-width: 1080px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}