/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Encabezado */
.header {
    background: #f0f9f8;
    padding: 40px 20px;
    text-align: center;
}
.header-text h1 {
    color: #00695c;
    font-size: 2.5em;
}
.header-text h2 {
    color: #004d40;
    font-size: 1.2em;
    margin-top: 10px;
}
.header-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 15px;
}
.header-images img {
    max-height: 200px;
    border-radius: 10px;
}

/* Formulario */
.form-section {
    background: #e0f2f1;
    padding: 40px 20px;
    text-align: center;
}
.inscripcion-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.inscripcion-form input,
.inscripcion-form select {
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
}
.inscripcion-form button {
    background: #00695c;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.inscripcion-form button:hover {
    background: #004d40;
}

/* Tabla */
.tabla-section {
    padding: 40px 20px;
    text-align: center;
}
table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 80%;
    max-width: 800px;
}
th, td {
    border: 1px solid #999;
    padding: 12px;
    text-align: left;
}
th {
    background: #00695c;
    color: white;
}
tr:nth-child(even) {
    background: #f5f5f5;
}

/* Footer */
.footer {
    background: #004d40;
    color: white;
    text-align: center;
    padding: 30px 20px;
}
.footer img {
    max-width: 180px;
    margin-bottom: 15px;
}
