/* Header Section */
.about-alt-header {
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}
.about-alt-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}
.about-alt-subtitle {
  font-size: 18px;
  color: #666;
}

/* Main Section Wrapper */
.about-alt-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Each Block */
.about-alt-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  flex-wrap: wrap;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.about-alt-block .about-alt-img {
  flex: 1;
  min-width: 300px;
}
.about-alt-block .about-alt-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-alt-block .about-alt-content {
  flex: 1;
  padding: 30px;
}
.about-alt-block .about-alt-content h2 {
  font-size: 20px;
  color: #2c3e50;
  margin-bottom: 7px;
}
.about-alt-block .about-alt-content p {
  font-size: 16px;
  line-height: 30px;
  color: #1d1e1c;
}

/* Image on Left */
.about-alt-block.image-left {
  flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .about-alt-block {
    flex-direction: column !important;
  }
  .about-alt-content {
    padding: 20px;
  }
}
