/* Diseño general */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #F4F4F4;
    color: #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    background-color: #4CAF50; /* Verde Jade */
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
}

main {
    flex: 1;
    padding: 20px;
    background-color: #fff;
}

section {
    margin-bottom: 20px;
}

h2 {
    color: #4CAF50; /* Verde Jade */
}

p {
    font-size: 1rem;
    color: #555;
}

/* Estilo del botón verde con esquinas redondeadas */
.back-button {
     background-color: #006400; /* Verde Jade */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 12px; /* Esquinas redondeadas */
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.back-button:hover {
    background-color: #218838; /* Verde más oscuro al pasar el mouse */
}

.back-button:focus {
    outline: none;
    box-shadow: 0 0 10px #4CAF50; /* Resalta el botón al hacer clic */
}

/* Footer */
footer {
    background-color: #333; /* Negro */
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer nav a {
    color: white;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}
