@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

section {
  padding: 40px 20px;
  text-align: center;
  
}

section h2 {
  font-size: 38px;
  color: #000000;
  margin-top: 15px;
  font-weight:bolder;
  position: relative;
  display: inline-block; 
}
h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #3498db, #ffffff); 
}
section h3 {
  font-size: 33px;
  color: #000000;
  margin-top: 15px;
  font-weight:bolder;
  position: relative; 
  display: inline-block; 
}

h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50%;
  background: linear-gradient(90deg, #3498db, #ffffff); 
}

section p{
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
  color: #000;
  font-weight: 600;
  background-color: rgba(135, 206, 235, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

img{
  transition: transform 0.3s ease;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 2);
  transition: box-shadow 0.3s ease;
}
img:hover {
  transform: scale(1.05); 
  filter: brightness(0.9);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 2);
}

.image{
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 50px; 
}
