body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 700px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 30px;
}

.question-card {
    background: #1e293b;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
}

select {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
}

button {
    width: 100%;
    padding: 15px;
    background: #22c55e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #16a34a;
}

.score-box {
    font-size: 48px;
    text-align: center;
    margin: 20px 0;
    color: #22c55e;
}

.risk-list li {
    background: #1e293b;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.back-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    color: #22c55e;
    text-decoration: none;
}
.score-message {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.good {
    color: #22c55e;
}

.medium {
    color: #f59e0b;
}

.bad {
    color: #ef4444;
}

.risk-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.cta-box {
    background: #1e293b;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}
.risk-card {
    background: #1e293b;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #f59e0b;
}

.risk-card.high {
    border-left: 5px solid #ef4444;
}

.risk-card.medium {
    border-left: 5px solid #f59e0b;
}

.risk-title {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Score explanation */
.score-explain {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* CTA button */
.cta-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #22c55e;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}
.score-box {
    text-align: center;
    margin: 20px 0;
}

.score-box h2 {
    font-size: 48px;
    color: #22c55e;
}

.score-label {
    color: #94a3b8;
    font-size: 14px;
}
h2 {
    margin-top: 30px;
}
.back-btn {
    display: inline-block;
    margin-top: 20px;
    color: #22c55e;
    text-decoration: none;
    font-weight: bold;
}
.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #94a3b8;
}
.good {
    color: #22c55e;
}

.medium {
    color: #f59e0b;
}

.bad {
    color: #ef4444;
}
.lead-form {
    margin-top: 20px;
}

.lead-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
}
.leads-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.leads-table th,
.leads-table td {
    padding: 10px;
    border-bottom: 1px solid #334155;
    text-align: left;
}

.leads-table th {
    color: #94a3b8;
}
.footer {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #94a3b8;
}

.footer a {
    color: #94a3b8;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
.credibility {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 10px;
}
@media (max-width: 600px) {

    h1 {
        font-size: 22px;
    }

    .score-box h2 {
        font-size: 36px;
    }

    button {
        font-size: 14px;
        padding: 12px;
    }

    .container {
        padding: 15px;
    }

    .risk-card {
        padding: 12px;
    }

}