.questions-section {
    padding: 50px 0 60px;
    background: #ffffff;
}

.questions-container {
    max-width: 100%;
    margin: 0 auto;
}

.questions-title {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.questions-subtitle {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 400;
}

.questions-form {
    /* max-width: 1000px; */
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #d0d5dc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
    color: #212121;
    background: #ffffff;
}

.form-input::placeholder {
    color: #999999;
    font-size: 13px;
    text-transform: uppercase;
}

.form-input:focus {
    border-color: #00acc1;
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.1);
}

.form-input:hover {
    border-color: #a0b3c2;
}

.form-submit-btn {
    background: #00acc1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    min-width: 200px;
}

.form-submit-btn:hover {
    background: #0097a7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 172, 193, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-agreement {
    margin-top: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    color: #666666;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #d0d5dc;
    border-radius: 3px;
    margin-right: 10px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #00acc1;
    border-color: #00acc1;
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.checkbox-label input[type="checkbox"]:focus {
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.2);
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: #00acc1;
}

.checkbox-text {
    line-height: 1.4;
}

.policy-link {
    color: #00acc1;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.policy-link:hover {
    color: #008ba3;
}


.form-group {
    margin: 0 0 0px;
}

@media (max-width: 991px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-submit-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .questions-title {
        font-size: 24px;
    }
    
    .questions-subtitle {
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-submit-btn {
        min-width: auto;
    }
    
    .checkbox-label {
        font-size: 12px;
    }
}
