:root {
    --primary-color: #00943B; /* Avokadio yeşili */
    --secondary-color: #F0F5F9; /* Açık gri */
    --text-color: #333;
    --light-gray: #ddd;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--secondary-color);
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.test-container {
    width: min(100% - 32px, var(--container));
    margin: 40px auto 0 auto;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 32px;
}

.step {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 24px;
}

.question {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.4;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.options button {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.options button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.options button.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 148, 59, 0.2);
}

input[type="number"] {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.next-button, .finish-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    background: var(--primary-color);
    color: #fff;
    transition: background-color 0.3s ease;
}

.next-button:hover, .finish-button:hover {
    background: #007a30;
}

.result {
    text-align: center;
    padding: 20px;
}

.result h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.result p {
    font-size: 1.2rem;
    font-weight: 500;
}

.info{
    text-align: center;
    margin-top: 40px;
}

.light__text{
    font-size: 14px;
    font-style: italic;
    color: #333333;
}
.text__title{
    font-size: 16px;
}
