body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #00205B;
    margin: 0;
    padding: 0;
}
header {
    background-color: #00205B;
    color: white;
    padding: 20px;
    text-align: center;
}
main {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}
.question {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}
@keyframes fadeInUp {
    to {
    opacity: 1;
    transform: translateY(0);
    }
}
.options label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
}
.options input[type="radio"] {
    transform: scale(1.2);
}
.progress {
    height: 20px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}
.progress-bar {
    height: 100%;
    width: 0;
    background-color: #00205B;
    transition: width 0.3s ease-in-out;
}
.progress-text {
    text-align: right;
    font-size: 0.95em;
    margin-bottom: 15px;
    color: #00205B;
}
button {
    background-color: #00205B;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 10px;
    width: 100%;
}
button:hover {
    background-color: #003580;
}
.result {
    margin-top: 10px;
    font-weight: bold;
    font-size: 1rem;
}
.score {
    font-size: 1.2em;
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border: 2px solid #00205B;
    border-radius: 10px;
    text-align: center;
    animation: fadeInUp 0.5s ease forwards;
}
.summary{
    display: flex;
    align-items: center;
}
.summary a{
    color: #00205B;
    text-decoration: none;
}
.summary a:hover{
    color: #003580;
}
.summary:hover{
    color: #003580;
}
@media screen and (max-width: 600px) {
    body {
    font-size: 16px;
    }
    .options label {
    font-size: 1.05rem;
    }
    button {
    font-size: 1.05rem;
    padding: 14px 20px;
    }
    .progress-text {
    font-size: 1rem;
    }
}
