
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #90EE90, #FFFF00, #FFC0CB); /* Verde claro, Amarillo, Rosa */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1 {
    color: #228B22; /* Verde bosque */
    margin-bottom: 20px;
}

h2 {
    color: #DAA520; /* Dorado */
    margin-top: 20px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

.option-button {
    background-color: #F0E68C; /* Caqui claro */
    color: #333;
    border: 2px solid #FFD700; /* Dorado */
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.option-button:hover {
    background-color: #FFD700; /* Dorado */
    border-color: #228B22; /* Verde bosque */
}

.option-button.selected {
    background-color: #FFC0CB; /* Rosa */
    border-color: #228B22; /* Verde bosque */
}

button#next-button {
    background-color: #228B22; /* Verde bosque */
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease;
}

button#next-button:hover {
    background-color: #DAA520; /* Dorado */
}

#result-container p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

#result-recommendations ul {
    list-style: none;
    padding: 0;
}

#result-recommendations li {
    background-color: rgba(34, 139, 34, 0.1); /* Verde bosque transparente */
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
}

.call-to-action {
    font-size: 1.3em;
    font-weight: bold;
    color: #DAA520;
    margin-top: 30px;
}


