body {
  
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    color: #333;
}

/* Estilos para el header */
header {
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    color: white;
    text-align: center;
    padding: 80px 20px;
    font-size: 1.8em;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 3em;
    letter-spacing: 2px;
    margin: 0;
}

/* Estilos para el contenedor principal */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Estilos para las secciones */
.about-section {
    text-align: center;
    padding: 30px;
}

.about-section h2 {
    color: #ff7e5f;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2em;
    line-height: 1.7;
    margin: 0 auto 30px;
    max-width: 900px;
}

/* Estilos para los valores */
.values-section {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}

.value-box {
    width: 30%;
    padding: 20px;
    background-color: #feb47b;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-box h3 {
    margin-bottom: 15px;
    font-size: 1.8em;
}

.value-box p {
    font-size: 1em;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 1em;
}