.elementor-173 .elementor-element.elementor-element-473b75f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-871e574 *//* Configuración General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f7f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

/* Contenedor Principal */
.thank-you-container {
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

/* Tarjeta Blanca */
.card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Icono de Check */
.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #00a859; /* Verde éxito */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

h1 {
    color: #004a99; /* Azul Today School */
    margin-bottom: 15px;
    font-size: 2rem;
}

p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    background-color: #eee;
    margin: 25px 0;
}

.subtext {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Botón */
.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e62e2d; /* Rojo acento Today School */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-back:hover {
    background-color: #c42625;
    transform: translateY(-2px);
}

/* Ajustes para móviles */
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }
    h1 {
        font-size: 1.5rem;
    }
}/* End custom CSS */