/* Estilo general */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    color: #444;
    background-color: #f3f5f7;
    margin: 0;
    padding: 20px;
}

/* Título principal */
h1 {
    font-size: 2.4em;
    color: #3498db;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Sección principal */
section {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: auto;
    transition: transform 0.3s;
}

/* Subtítulos */
h2 {
    font-size: 1.6em;
    color: #333;
    margin-top: 25px;
    border-left: 4px solid #3498db;
    padding-left: 10px;
    font-weight: 600;
}

/* Párrafos */
p {
    margin: 12px 0;
    text-align: justify;
    line-height: 1.7;
}

/* Listas */
ul {
    margin: 15px 0;
    padding-left: 25px;
    list-style-type: disc;
}

li {
    margin-bottom: 10px;
}

/* Textos destacados */
strong {
    color: #3498db;
}

/* Enlaces dentro del texto */
a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #21618c;
    text-decoration: underline;
}

/* Botón Volver */
.button-container {
    text-align: center;
    margin-top: 30px;
}

button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #21618c;
    transform: scale(1.05);
}

button:focus {
    outline: none;
}

/* Responsividad */
@media (max-width: 768px) {
    section {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.4em;
    }
}
