/* Estilos generales para la sección */
#info-maraton {
    margin-top: 15px;
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

#info-maraton .container {
    max-width: 900px;
    margin: 0 auto;
}

#info-maraton h2 {
    font-size: 2rem;
    color: #2c6700;
    font-weight: bold;
    margin-bottom: 20px;
}

#info-maraton .intro-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
}

#info-maraton .highlight {
    font-size: 1.4rem;
    font-weight: bold;
    color: #097001;
    margin: 10px 0;
}

#info-maraton .date {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
}

#info-maraton .info-box {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#info-maraton .info-box h3 {
    font-size: 1.5rem;
    color: #2c6700;
    margin-bottom: 10px;
}

#info-maraton .info-box p {
    font-size: 1.1rem;
    color: #444;
}

#info-maraton ul {
    list-style: none;
    padding: 0;
}

#info-maraton ul li {
    font-size: 1.1rem;
    color: #555;
    padding: 5px 0;
}

#info-maraton .warning {
    color: #d9534f;
    font-weight: bold;
    margin-top: 10px;
}

/* Botones de inscripción */
#info-maraton .cta-buttons {
    margin-top: 20px;
}

#info-maraton .btn {
    display: inline-block;
    background: #2c6700;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 5px;
    transition: 0.3s ease-in-out;
}

#info-maraton .btn:hover {
    background: #1f4c00;
}

#info-maraton .btn-alt {
    background: #007bff;
}

#info-maraton .btn-alt:hover {
    background: #0056b3;
}