/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;500;600&family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500&display=swap");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* About Section */
.about-section {
  padding: 80px 0;
}

.about-section img {
  border-radius: 10px;
}

.about-section h2 {
  font-weight: 700;
}

.about-section p {
  color: #555;
  line-height: 1.8;
}
