.calc-form-wrapper .form-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    color: #333;
	font-weight: 700;
	line-height: 30px;
	text-align: left;
}

.calc-form-wrapper .form-group {
    margin-bottom: 20px;
}

.calc-form-wrapper .form-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	position: initial;
}

.calc-form-wrapper .calc-time-title {
	margin-bottom:8px;
}
.calc-form-wrapper .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #fff;
	text-shadow: none;
    box-shadow: none;
	color: #333;
	max-width: 432px;
}

.calc-form-wrapper.form-input:focus {
    border-color: #4a90e2;
    outline: none;
}

.calc-form-wrapper .form-divider {
    height: 1px;
    background: #eee;
    margin: 25px 0;
}

.time-slots {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.time-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.time-option input[type="radio"] {
    margin: 0 8px 0 0;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 2px solid #999;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
}

.time-option input[type="radio"]:checked {
    border-color: #4a90e2;
    background: #fff;
}

.time-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #4a90e2;
    border-radius: 50%;
}

.time-slot-text {
    font-size: 14px;
    color: #333;
}

.calc-form-wrapper .new-style-btn {
    background: #4584CB;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
	max-width: 247px;
	height: 56px;
	margin: 0;
}

.calc-form-wrapper .form_result.success h3, .calc-form-wrapper .form_result.success p {
	color: #17202D;
}

.calc-time-block {
	margin-bottom:16px;
}

.calc-form-wrapper .new-style-btn:hover {
    background: #3a7bc8;
	color:#fff;
}

.form-consent {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

.form-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

@media (max-width: 480px) {
    .time-slots {
        flex-direction: column;
        gap: 10px;
    }
    
    .consultation-form {
        padding: 20px;
    }
}