body {
    font-family: 'Lato', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 30px 40px;
    text-align: center;
}

h1 {
    font-weight: 900;
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

h2 {
    font-weight: 400;
    font-size: 18px;
    color: #555;
    margin-bottom: 25px;
}

h3 {
    font-weight: 700;
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
}

ul {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 30px;
}

ul li {
    font-size: 17px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

ul li strong {
    color: #16a085;
}

/* El checkmark */
ul li::before {
    content: '✅';
    font-size: 20px;
    margin-right: 12px;
}

form {
    background-color: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 8px;
    padding: 25px;
}

form h4 {
    margin-top: 0;
    font-weight: 700;
    font-size: 18px;
}

input[type="text"],
input[type="email"] {
    width: 90%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
}

button[type="submit"] {
    background-color: #f39c12; /* Un naranja que convierte */
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 95%;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

button[type="submit"]:hover {
    background-color: #e67e22;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
}
