body {
  margin: 0;
}

/* ===== Sección principal ===== */
.about-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  color: #d47a7a;
  margin-bottom: 20px;
  font-size: 28px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}

/* ===== Imagen ===== */
.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===== Footer ===== */
footer {
  background-color: #fff;
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #e6d4d4;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 300px;
  }

  .about-text h2 {
    font-size: 24px;
  }
}
