#about {
  padding: 60px 20px;
  background: #1c191f; 
  color: #fff;
  text-align: center;
  border-top: 5px solid #d4ac4b; 
}

#about h2 {
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #fff; 
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Roboto', sans-serif; 
}

#about p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  color: #fff; 
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#about .container {
  max-width: 1200px;
  margin: 0 auto; 
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;  
}

.text-content {
  flex: 1;
  max-width: 50%; 
}

.image-content {
  flex: 1;
  max-width: 50%; 
}

.image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsividad */
@media (max-width: 768px) {
  #about .container {
    flex-direction: column;
    align-items: center;
  }

  .text-content, .image-content {
    max-width: 100%; 
    text-align: center;
  }

  #about h2 {
    font-size: 2rem; 
  }

  #about p {
    font-size: 1rem; 
  }

  #about .btn {
    width: 100%; 
    padding: 15px;
    font-size: 1.5rem;
  }
}