body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7f5;
    color: #1f2a24;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

h1 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 32px;
}

.intro {
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.6;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #cfd8d3;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

button {
    background: #1f4b37;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background: #163729;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.result-item {
    background: #f7faf8;
    border: 1px solid #dce6e0;
    border-radius: 12px;
    padding: 16px;
}

.summary {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.error {
    color: #b00020;
    font-weight: bold;
}

.back-link {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #1f4b37;
    font-weight: bold;
}

.back-link:hover {
    text-decoration: underline;
}

.cta {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 15px;
    max-width: 520px;
}

.score-box {
    margin: 24px 0;
    padding: 24px;
    background: #f7faf8;
    border-left: 5px solid #1f4b37;
    border-radius: 12px;
}

.score-box h2 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.score-number {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: #1f4b37;
}

.recommendations {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.recommendations li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.recommendations-box {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 20px;
    background: #f7faf8;
    border-left: 4px solid #1f4b37;
    border-radius: 10px;
}

.recommendations-box h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: #1f4b37;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #1f4b37;
    box-sizing: border-box;
    line-height: 1;
}

.cta-button:hover {
    background: #173b2b;
    border-color: #173b2b;
}



.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: #1f4b37;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #1f4b37;
    box-sizing: border-box;
    line-height: 1;
}


.secondary-button:hover {
    background: #173b2b;
}

.cta-buttons {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}



