.anketa {
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #f9fafb;
    font-family: 'Inter', sans-serif;
}

.anketa-container {
    width: 100%;
    max-width: 720px;
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.anketa-receiving,
.anketa-interes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.anketa-receiving-title,
.anketa-interes-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.label-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.label-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
    cursor: pointer;
}

.label-check span {
    transition: color 0.2s;
}

.label-check:hover span {
    color: #1d4ed8;
}

@media (max-width: 768px) {
    .anketa-container {
        max-width: 90%;
        padding: 20px;
        border-radius: 16px;
        gap: 16px;
    }

    .anketa-receiving-title,
    .anketa-interes-title {
        font-size: 16px;
    }

    .label-check {
        font-size: 14px;
        gap: 8px;
    }

    .label-check input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .anketa-container {
        padding: 16px;
        gap: 12px;
    }

    .anketa-receiving-title,
    .anketa-interes-title {
        font-size: 14px;
    }

    .label-check {
        font-size: 13px;
        gap: 6px;
    }

    .label-check input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 1024px) {
    .anketa-container {
        max-width: 95%;
        padding: 28px;
        border-radius: 18px;
        gap: 20px;
    }

    .anketa-receiving-title,
    .anketa-interes-title {
        font-size: 17px;
    }

    .label-check {
        font-size: 15px;
        gap: 9px;
    }

    .label-check input[type="checkbox"] {
        width: 17px;
        height: 17px;
    }
}
