.request-form-service-selection {
    padding: 20px 0;
}

.request-form-service-selection h4 {
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

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

.service-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.service-option:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.service-option input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.service-option input[type="radio"]:checked + span {
    font-weight: 600;
    color: #007bff;
}

.service-option input[type="radio"]:checked {
    accent-color: #007bff;
}

.service-option span {
    font-size: 16px;
    line-height: 1.4;
}

/* Service content text styling */
.service-content .request-form-text {
    font-size: 14px;
    line-height: 1.4;
    color: #FFF;
    font-family: Inter;
    font-weight: 400;
}

@media (max-width: 768px) {
    .service-option {
        padding: 12px 15px;
    }
    
    .service-option span {
        font-size: 14px;
    }
    
    .service-content .request-form-text {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .service-content .request-form-text {
        font-size: 16px;
    }
} 