.about-us {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}
.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}
.about-text h2 {
  font-size: 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background-color: #27ae60;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.about-btn:hover {
  background-color: #219150;
}
.about-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
