* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f4f4f4;
  padding: 2rem;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  gap: 2rem;
  flex-wrap: wrap;
}

.image-container {
  flex: 1;
  max-width: 400px;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.inner-container {
  flex: 2;
  max-width: 600px;
}

.inner-container h1 {
  font-size: 2rem;
  color: #1abc9c;
  margin-bottom: 1rem;
}

.inner-container .text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

button {
  padding: 0.6rem 1.2rem;
  background-color: #1abc9c;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

button:hover {
  background-color: #149279;
}
