.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

h1 {
    color: #1C75BC;
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
}

.question {
    background-color: white;
    border: 2px solid #1C75BC;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.question h2 {
    color: #1C75BC;
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 600;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.option-btn {
    background-color: #1C75BC;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: large;
    font-weight: 500;
    border: 2px solid #1C75BC;
    border-radius: 5px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-btn:hover {
    background-color: #155a8a;
    border-color: #155a8a;
    transform: translateY(-2px);
}

.option-btn:active {
    transform: translateY(0);
}

.hidden {
    display: none;
}

#results {
    background-color: white;
    border: 2px solid #1C75BC;
    border-radius: 5px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#results-content {
    margin-bottom: 30px;
}

#results-content h2 {
    color: #1C75BC;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

#results-content h3 {
    color: #1C75BC;
    font-size: 1.3em;
    margin-bottom: 15px;
    margin-top: 25px;
}

#results-content p {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

#results-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

#results-content li {
    margin-bottom: 8px;
    color: #333;
}

.urgent {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 5px;
    color: #721c24;
    font-weight: 500;
    margin: 15px 0;
}

.important {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 15px;
    border-radius: 5px;
    color: #0c5460;
    font-weight: 500;
    margin: 15px 0;
}

.navigation {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #1C75BC;
}

.nav-button {
    display: inline-block;
    background-color: #1C75BC;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: large;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #1C75BC;
    border-radius: 5px;
    padding: 12px 24px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.nav-button:hover {
    background-color: #155a8a;
    border-color: #155a8a;
}

strong {
    color: #1C75BC;
    font-weight: 600;
}
