body {
    margin: 0;
    padding: 20px;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f7f6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: white;
    width: 90%;
    max-width: 760px;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.tag {
    display: inline-block;
    background: #eaf7ef;
    color: #2f8f5b;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

button {
    margin-top: 20px;
    padding: 14px 28px;
    border: none;
    border-radius: 999px;
    background: #2f8f5b;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #247346;
    transform: scale(1.03);
}

.answer-btn {
    display: block;
    width: 100%;
    margin: 12px 0;
    padding: 14px;
    background: #ffffff;
    color: #222;
    border: 2px solid #2f8f5b;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

.answer-btn:hover {
    background: #eaf7ef;
    transform: scale(1.01);
}

.progress {
    font-size: 15px;
    color: #777;
    margin-bottom: 15px;
}

.result-card {
    text-align: left;
}

.result-card h2 {
    text-align: center;
    color: #2f8f5b;
}

.result-card ul {
    padding-left: 20px;
}

.profile-percentage {
    background: #eaf7ef;
    color: #2f8f5b;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
}

.profile-quote {
    background: #f4f7f6;
    border-left: 5px solid #2f8f5b;
    padding: 15px;
    border-radius: 10px;
    font-style: italic;
    margin: 20px 0;
}

.article-list li {
    margin-bottom: 10px;
}

.article-list a {
    color: #2f8f5b;
    font-weight: bold;
    text-decoration: none;
}

.article-list a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    background: #fff8e5;
    padding: 14px;
    border-radius: 10px;
    margin-top: 20px;
}

.restart-btn {
    display: block;
    margin: 30px auto 0;
}

.footer {
    margin-top: 35px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.footer p {
    font-size: 14px;
    color: #777;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
        align-items: flex-start;
    }

    .container {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .logo {
        max-width: 130px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
    }

    button {
        width: 100%;
        font-size: 16px;
    }

    .answer-btn {
        font-size: 15px;
    }
}