body {
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.card {
    background-color: #ffffff;
    padding: 30px;
    margin: 60px auto;
    max-width: 600px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.card h2 {
    margin-bottom: 25px;
    font-size: 26px;
    text-align: center;
}

.card form div {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.card p {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 16px;
}

.card select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fff;
    height: 48px;
    box-sizing: border-box;
    appearance: none;
}

.screening-submit {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 14px;
    background-color: #2c7be5;
    color: white;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.screening-submit:hover {
    background-color: #1a5cd8;
}

.card .result {
    margin-top: 30px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #e63946;
}

.screening-next {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    background-color: #4caf50;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.screening-next:hover {
    background-color: #388e3c;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

.appointment-form input {
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
    width: 100%;
    box-sizing: border-box;
}
