.elementor-189 .elementor-element.elementor-element-2e2f5eb{--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-be5db4b */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f4f7; /* Gris azulado muy suave */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #444;
}

.main-wrapper {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.thank-you-card {
    background: #ffffff;
    max-width: 450px;
    width: 100%;
    padding: 50px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.check-icon {
    width: 70px;
    height: 70px;
    background-color: #00b36e; /* Verde vibrante */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.check-icon svg {
    width: 35px;
    height: 35px;
}

h1 {
    color: #0056b3; /* Azul corporativo */
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.separator {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.instruction {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.btn-primary {
    display: inline-block;
    background-color: #e53935; /* Rojo Today School */
    color: #ffffff;
    text-decoration: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 57, 53, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .thank-you-card {
        padding: 40px 20px;
    }
}/* End custom CSS */