/* about.css */
.about-content {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #ffffff;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 60%;
}

.about-text h2 {
  margin-top: 1rem;
  color: var(--cta-bg);
  font-size: 1.8rem;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about-image {
  flex: 1 1 35%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-image .caption {
  font-style: italic;
  margin-top: 0.5rem;
  color: #666;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 800px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
    text-align: left;
  }

  .about-image {
    text-align: center;
  }
}
