.intro {
  background-color: #fffafc;        
  text-align: center;               
  padding: 60px 20px;
  border-radius: 20px;              
  margin: 40px auto;                
  width: 80%;                       
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}
.intro h2 {
  color: #d63384;                   
  font-size: 2em;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}
.intro p {
  color: #555;
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
}
.intro .btn {
  display: inline-block;
  background-color: #ff69b4;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.intro .btn:hover {
  background-color: #d63384;
  transform: scale(1.05);
}