.about-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  color: #333;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1 1 55%;
  padding: 20px;
}

.about-text h1 {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 1.5rem;
  color: #023e8a;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-text ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 1.05rem;
}

.about-text ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  color: #0077b6;
}

.about-text h4,
.about-text h5 {
  margin-top: 30px;
  color: #023e8a;
}

.about-text .btn{
    background-color: #023e8a;
    color: #fff;
    padding:12px 24px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 12px black;
}
.about-text .btn:hover{
    background-color:black;
    box-shadow:0 10px 12px #02377d;
    transform: translateY(-4px);
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
  padding: 20px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}