.about-section {
  padding: 80px 20px;
  background: #f9fbff;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-size: 36px;
  color: #0d1b3e;
  margin-bottom: 20px;
}

.about-text .intro {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.7;
}

.about-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.block h3 {
  color: #705C53;
  font-size: 20px;
  margin-bottom: 8px;
}

.block p {
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

.explore-btn {
  margin-top: 30px;
  display: inline-block;
  background: #705C53;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.explore-btn:hover {
  background: #e5cabd;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
